function Status::reportCheck
Checking status message
1 call to Status::reportCheck()
- 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 132
Class
- Status
- @author John Stevenson <john-stevenson@blueyonder.co.uk> @internal
Namespace
Composer\XdebugHandlerCode
private function reportCheck(string $loaded) : void {
list($version, $mode) = explode('|', $loaded);
if ($version !== '') {
$this->loaded = '(' . $version . ')' . ($mode !== '' ? ' xdebug.mode=' . $mode : '');
}
$this->modeOff = $mode === 'off';
$this->output('Checking ' . $this->envAllowXdebug);
}