mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 15:05:40 +00:00
edc433793b
Logic hasn't changed, but removed duplicate ADMIN check in DevCheckController.
10 lines
167 B
PHP
10 lines
167 B
PHP
<?php
|
|
|
|
class DevCheckController extends Controller {
|
|
function index() {
|
|
$e = new EnvironmentChecker('check', 'Environment status');
|
|
$e->init();
|
|
return $e;
|
|
}
|
|
}
|