| 1 | <?php |
||
| 21 | class AuthorizationController extends AbstractController |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @inheritdoc |
||
| 25 | */ |
||
| 26 | public function behaviors() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @inheritdoc |
||
| 50 | */ |
||
| 51 | protected function verbs(): array |
||
| 52 | { |
||
| 53 | return [ |
||
| 54 | 'callback' => ['get'] |
||
| 55 | ]; |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @inheritdoc |
||
| 60 | */ |
||
| 61 | public function actions() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @return bool |
||
| 73 | */ |
||
| 74 | public function checkCallbackAccess() |
||
| 79 | } |
||
| 80 |