| 1 | <?php |
||
| 7 | class ArticleListMethodValidator implements ValidatorInterface |
||
| 8 | { |
||
| 9 | private $allowedMethods = [ |
||
| 10 | 'desked', |
||
| 11 | 'auto' |
||
| 12 | ]; |
||
| 13 | |||
| 14 | private $method; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param string $method |
||
| 18 | */ |
||
| 19 | public function __construct($method) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return bool |
||
| 26 | */ |
||
| 27 | public function isValid() |
||
| 31 | } |
||
| 32 |