osInfo = $osInfo; } /** * Render command with arguments * * @param string $command * @param array $arguments * @return string */ public function render($command, array $arguments = []) { $command = parent::render($command, $arguments); return $this->osInfo->isWindows() ? 'start /B "magento background task" ' . $command : str_replace('2>&1', '> /dev/null &', $command); } }