function Status::reportRestarting
Restarting status message
1 call to Status::reportRestarting()
- 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 198
Class
- Status
- @author John Stevenson <john-stevenson@blueyonder.co.uk> @internal
Namespace
Composer\XdebugHandlerCode
private function reportRestarting(string $command) : void {
$text = sprintf('Process restarting (%s)', $this->getEnvAllow());
$this->output($text);
$text = 'Running: ' . $command;
$this->output($text);
}