mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
9 lines
162 B
PHP
9 lines
162 B
PHP
<?php
|
|
|
|
class DevHealth extends Controller {
|
|
function index() {
|
|
$e = new EnvironmentChecker('health', 'Site health');
|
|
$e->setErrorCode(404);
|
|
return $e;
|
|
}
|
|
} |