Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class InfoController extends Controller |
||
22 | { |
||
23 | // Protected Properties |
||
24 | // ========================================================================= |
||
25 | |||
26 | protected $allowAnonymous = [ |
||
27 | 'is-live', |
||
28 | ]; |
||
29 | |||
30 | // Public Methods |
||
31 | // ========================================================================= |
||
32 | |||
33 | |||
34 | /** |
||
35 | * Returns whether the stream is currently live |
||
36 | * |
||
37 | * @return bool |
||
38 | */ |
||
39 | public function actionIsLive(): bool |
||
44 |