| 1 | <?php namespace Arcanedev\Support; |
||
| 11 | class Collection extends IlluminateCollection |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Illuminate Functions |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * Filter items by the given key value pair. |
||
| 19 | * |
||
| 20 | * @param string $key |
||
| 21 | * @param array $values |
||
| 22 | * @param bool $strict |
||
| 23 | * |
||
| 24 | * @return static |
||
| 25 | */ |
||
| 26 | public function whereIn($key, array $values, $strict = true) |
||
| 32 | |||
| 33 | /* ------------------------------------------------------------------------------------------------ |
||
| 34 | | Custom Functions |
||
| 35 | | ------------------------------------------------------------------------------------------------ |
||
| 36 | */ |
||
| 37 | /** |
||
| 38 | * Reset the collection. |
||
| 39 | * |
||
| 40 | * @return self |
||
| 41 | */ |
||
| 42 | 8 | public function reset() |
|
| 48 | } |
||
| 49 |