From c87af4204be6312e156ca5d533d077c47684c7a2 Mon Sep 17 00:00:00 2001 From: Bjorn Post Date: Tue, 7 Apr 2015 16:16:55 +0200 Subject: [PATCH] Removed incorrect finder example, fixes #120 As reported by @mtibben in #120. --- docs/gettingstarted.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/gettingstarted.rst b/docs/gettingstarted.rst index 2b13fce..3bd3779 100644 --- a/docs/gettingstarted.rst +++ b/docs/gettingstarted.rst @@ -121,9 +121,6 @@ See :doc:`finding` for more details. // by identifier $post = Post::byId(1); - // by a collection of properties - $post = Post::find(array('title'=>'The joys of llama farming'))->one(); - // using a magic finder method $posts = Post::findByTitleAndTimestamp('The joys of llama farming', '2013-01-01'); $posts = Post::findByType(array('blog', 'article'));