Skip to content

Commit 5fbe969

Browse files
committed
TQueryableRepository: fixed wrong method name
1 parent a70ea80 commit 5fbe969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TQueryableRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function find(IQuery $query)
3535
*/
3636
public function findOne(IQuery $query)
3737
{
38-
$row = $this->apply($query)
38+
$row = $this->applyQuery($query)
3939
->removeClause('limit')
4040
->removeClause('offset')
4141
->fetch();

0 commit comments

Comments
 (0)