Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class CachesController extends Controller |
||
16 | { |
||
17 | |||
18 | /** @var array|bool|int */ |
||
19 | public array|bool|int $allowAnonymous = self::ALLOW_ANONYMOUS_OFFLINE; |
||
20 | |||
21 | /** |
||
22 | * Invalidate all flagged caches, or caches flagged with one or several particular flags |
||
23 | * |
||
24 | * @return bool |
||
25 | */ |
||
26 | public function actionInvalidate(): bool |
||
55 |