Added default value for limit in FinderInterface

This commit is contained in:
Richard Miller 2012-08-07 19:26:41 +01:00
commit 3bc34c159c

View file

@ -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);
}