Lines Matching defs:executable
19 private $executable;
42 * @param string $executable
47 public function __construct($executable, $port, $args = [], $environment = null)
49 $this->setExecutable($executable);
116 * @param string $executable
119 protected static function checkExecutable($executable)
121 return $executable;
125 * @param string $executable
128 protected function setExecutable($executable)
130 if ($this->isExecutable($executable)) {
131 $this->executable = $executable;
138 '"%s" is not executable. Make sure the path is correct or use environment variable to specify'
139 . ' location of the executable.',
140 $executable
155 'Error starting driver executable "%s": %s',
173 ->setPrefix($this->executable)
180 $commandLine = array_merge([$this->executable], $this->args);
186 * Check whether given file is executable directly or using system PATH