Skip to content

Commit

Permalink
remove loadWhere in documentation (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomK authored and rgooding committed Apr 17, 2018
1 parent 9b4bea3 commit 47ec4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Getting Started
$user->id = 4;
$user->load();

$tbUsers = User::loadWhere(['name' => ['Test','Testing']]);
$tbUsers = User::collection(['name' => ['Test','Testing']]);
foreach($tbUsers as $user)
{
echo "Located $user->name\n";
Expand Down

0 comments on commit 47ec4b8

Please sign in to comment.