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

Breadcrumb

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

function PhpConfig::useStandard

Use standard restart settings

Return value

string[] PHP cli options

File

vendor/composer/xdebug-handler/src/PhpConfig.php, line 39

Class

PhpConfig
@author John Stevenson <john-stevenson@blueyonder.co.uk>

Namespace

Composer\XdebugHandler

Code

public function useStandard() : array {
    $data = $this->getDataAndReset();
    if ($data !== null) {
        return [
            '-n',
            '-c',
            $data['tmpIni'],
        ];
    }
    return [];
}

API Navigation

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