1 | <?php |
||
11 | trait FilterTrait |
||
12 | { |
||
13 | /** |
||
14 | * Make an iterator that returns values from this iterable where the |
||
15 | * $strategy determines that the values are not empty. |
||
16 | * |
||
17 | * @param null|string|\Closure $strategy Optional, when not specified !empty will be used |
||
18 | * @return FilterIterator |
||
19 | */ |
||
20 | 7 | public function filter($strategy = null) |
|
34 | } |
||
35 |
This function has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed from the class and what other function to use instead.