mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
28 lines
515 B
PHP
28 lines
515 B
PHP
<?php
|
|
|
|
class DevHealthController extends Controller
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
public static $allowed_actions = array(
|
|
'index'
|
|
);
|
|
|
|
/**
|
|
* @return EnvironmentChecker
|
|
*
|
|
* @throws SS_HTTPResponse_Exception
|
|
*/
|
|
public function index()
|
|
{
|
|
// health check does not require permission to run
|
|
|
|
$checker = new EnvironmentChecker('health', 'Site health');
|
|
$checker->init('');
|
|
$checker->setErrorCode(404);
|
|
|
|
return $checker;
|
|
}
|
|
}
|