/** * @override * @inheritDoc */ public function run($command) { $command = $command . '>/dev/null 2>&1 & echo $!'; if ($this->isolator !== null) { return $this->isolator->call('exec', [$command]); } else { return exec($command); } }