| 1 | <?php |
||
| 19 | class RouteController extends Controller |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @inheritdoc |
||
| 23 | */ |
||
| 24 | protected $allowAnonymous = ['index']; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string|null $jwt |
||
| 28 | * @return mixed |
||
| 29 | * @throws \yii\base\InvalidConfigException |
||
| 30 | * @throws \yii\web\BadRequestHttpException |
||
| 31 | */ |
||
| 32 | public function actionIndex(string $jwt = null) |
||
| 48 | } |
||
| 49 |