| 1 | <?php |
||
| 20 | final class DisplayParameterChecker implements ParameterChecker |
||
| 21 | { |
||
| 22 | public const DISPLAY_PAGE = 'page'; |
||
| 23 | |||
| 24 | public const DISPLAY_POPUP = 'popup'; |
||
| 25 | |||
| 26 | public const DISPLAY_TOUCH = 'touch'; |
||
| 27 | |||
| 28 | public const DISPLAY_WAP = 'wap'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function check(Authorization $authorization): Authorization |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string[] |
||
| 48 | */ |
||
| 49 | private function getAllowedDisplayValues(): array |
||
| 58 | } |
||
| 59 |