Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Status.php

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\XdebugHandler

Code

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);
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal