| Total Complexity | 6 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class CachesController extends Controller |
||
| 17 | { |
||
| 18 | |||
| 19 | public function init(): void |
||
| 20 | { |
||
| 21 | $this->allowAnonymous = true; |
||
| 22 | parent::init(); |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Invalidate all flagged caches, or caches flagged with one or several particular flags |
||
| 27 | * |
||
| 28 | * @return bool |
||
| 29 | */ |
||
| 30 | public function actionInvalidate(): bool |
||
| 57 | } |
||
| 58 | } |
||
| 59 |