12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
abstract class AdminController extends BaseController
|
|
{
|
|
public function beforeRoute(): void
|
|
{
|
|
$this->requireAuth();
|
|
}
|
|
}
|