| 1 | <?php |
||
| 19 | final class States extends Collection |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Constructor |
||
| 23 | * |
||
| 24 | * @param State[] $collection collection elements |
||
| 25 | */ |
||
| 26 | 15 | public function __construct(array $collection = []) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Add state to collection |
||
| 35 | * |
||
| 36 | * @param State $state |
||
| 37 | */ |
||
| 38 | 14 | public function add(State $state) |
|
| 42 | } |
||
| 43 |