| 1 | <?php |
||
| 13 | final class Filter implements FilterInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $name; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | private $options = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getName(): string |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $name |
||
| 35 | */ |
||
| 36 | public function setName(string $name): void |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | public function getOptions(): array |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param array $options |
||
| 51 | */ |
||
| 52 | public function setOptions(array $options): void |
||
| 56 | } |
||
| 57 |