| 1 | <?php |
||
| 13 | class DevCheckController extends Controller |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | private static $allowed_actions = [ |
||
| 19 | 'index' |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Permission code to check for access to this controller. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private static $permission = 'ADMIN'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param HTTPRequest $request |
||
| 31 | * |
||
| 32 | * @return EnvironmentChecker |
||
| 33 | * |
||
| 34 | * @throws HTTPResponse_Exception |
||
| 35 | */ |
||
| 36 | public function index($request) |
||
| 49 | } |
||
| 50 |