public function ExecutableFinder::__construct

File

drupal/core/vendor/symfony/process/Symfony/Component/Process/ExecutableFinder.php, line 26

Class

ExecutableFinder
Generic executable finder.

Namespace

Symfony\Component\Process

Code

public function __construct() {
  if (null === self::$isWindows) {
    self::$isWindows = 0 === stripos(PHP_OS, 'win');
  }
}