From 50ba50f8485e17898e46f227109b6f522fe35505 Mon Sep 17 00:00:00 2001 From: Richard Miller Date: Tue, 10 Jul 2012 20:30:19 +0100 Subject: [PATCH] Added findHybrid to the repository --- Repository.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Repository.php b/Repository.php index e50681d..3e702be 100644 --- a/Repository.php +++ b/Repository.php @@ -28,6 +28,11 @@ class Repository return $this->finder->findPaginated($query); } + public function findHybrid($query) + { + return $this->finder->findHybrid($query); + } + public function createPaginatorAdapter($query) { return $this->finder->createPaginatorAdapter($query);