1 | <?php |
||
5 | class CollectionManager extends MethodCallManager |
||
6 | { |
||
7 | /** |
||
8 | * Indicates wether given collection contains the wanted item or not. |
||
9 | * |
||
10 | * @param mixed $needle |
||
11 | * @param array $haystack |
||
12 | * |
||
13 | * @return bool |
||
14 | */ |
||
15 | 3 | public static function collectionContains($needle, $haystack) |
|
25 | } |
||
26 |