Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AbstractContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ public function findBy($property, $value, $all = false)
{
if ($all) {
return $this->findAllBy($property, $value);
} else {
return $this->findOneBy($property, $value);
}

return $this->findOneBy($property, $value);
}

/**
Expand Down

0 comments on commit 8b01bd8

Please sign in to comment.