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