Lines Matching refs:process
158 $process = ProcessBuilder::create()
163 $this->assertEquals('"/usr/bin/php"', $process->getCommandLine());
165 $this->assertEquals("'/usr/bin/php'", $process->getCommandLine());
171 $process = ProcessBuilder::create(['/usr/bin/php'])
175 $this->assertEquals('"/usr/bin/php"', $process->getCommandLine());
177 $this->assertEquals("'/usr/bin/php'", $process->getCommandLine());
183 $process = ProcessBuilder::create(['/usr/bin/php'])
187 $this->assertTrue($process->isOutputDisabled());
192 $process = ProcessBuilder::create(['/usr/bin/php'])
197 $this->assertFalse($process->isOutputDisabled());
215 $process = $builder->getProcess();
216 $process->run();
218 $this->assertTrue($process->isSuccessful());