From 3bc34c159c304405fc588091fdef88eb355c5aa1 Mon Sep 17 00:00:00 2001 From: Richard Miller Date: Tue, 7 Aug 2012 19:26:41 +0100 Subject: [PATCH] Added default value for limit in FinderInterface --- Finder/FinderInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Finder/FinderInterface.php b/Finder/FinderInterface.php index 01e8971..9094149 100644 --- a/Finder/FinderInterface.php +++ b/Finder/FinderInterface.php @@ -11,5 +11,5 @@ interface FinderInterface * @param int $limit How many results to get * @return array results */ - function find($query, $limit); + function find($query, $limit = null); }