function Status::reportNoRestart
No restart status message
1 call to Status::reportNoRestart()
- Status::report in vendor/
composer/ xdebug-handler/ src/ Status.php - Calls a handler method to report a message
File
-
vendor/
composer/ xdebug-handler/ src/ Status.php, line 162
Class
- Status
- @author John Stevenson <john-stevenson@blueyonder.co.uk> @internal
Namespace
Composer\XdebugHandlerCode
private function reportNoRestart() : void {
$this->output($this->getLoadedMessage());
if ($this->loaded !== null) {
$text = sprintf('No restart (%s)', $this->getEnvAllow());
if (!(bool) getenv($this->envAllowXdebug)) {
$text .= ' Allowed by ' . ($this->modeOff ? 'xdebug.mode' : 'application');
}
$this->output($text);
}
}