| 1 | <?php |
||
| 8 | class WhereMutator extends Mutator |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Remove all values that do not match the given key-value pairs. |
||
| 12 | * |
||
| 13 | * By default strict comparison is used. |
||
| 14 | * |
||
| 15 | * @param Collection $collection |
||
| 16 | * @param array $properties |
||
| 17 | * @param boolean $strict |
||
| 18 | * @return Collection |
||
| 19 | */ |
||
| 20 | 1 | public function __invoke($collection, array $properties, $strict = true) |
|
| 37 | } |
||
| 38 |