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

Breadcrumb

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

function PhpExecutableFinder::findArguments

Finds the PHP executable arguments.

1 call to PhpExecutableFinder::findArguments()
PhpExecutableFinder::find in vendor/symfony/process/PhpExecutableFinder.php
Finds The PHP executable.

File

vendor/symfony/process/PhpExecutableFinder.php, line 87

Class

PhpExecutableFinder
An executable finder specifically designed for the PHP executable.

Namespace

Symfony\Component\Process

Code

public function findArguments() : array {
    $arguments = [];
    if ('phpdbg' === \PHP_SAPI) {
        $arguments[] = '-qrr';
    }
    return $arguments;
}
RSS feed
Powered by Drupal