Elgg\Application\CacheHandler::send403 PHP Метод

send403() защищенный Метод

Send an error message to requestor
protected send403 ( string $msg = 'Cache error: bad request' ) : void
$msg string Optional message text
Результат void
    protected function send403($msg = 'Cache error: bad request')
    {
        header('HTTP/1.1 403 Forbidden');
        echo $msg;
        exit;
    }