refactor(lib): Fixed API change for process symfony
This commit is contained in:
		@@ -26,8 +26,7 @@ class Console extends AbstractConsole {
 | 
				
			|||||||
    if (isset($input)) {
 | 
					    if (isset($input)) {
 | 
				
			||||||
      $input = $this->convertToString($input);
 | 
					      $input = $this->convertToString($input);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    $process = new Process(implode(' ', $stdin), null, $envs, $input);
 | 
					    $process = new Process($stdin, null, $envs, $input);
 | 
				
			||||||
    $process->inheritEnvironmentVariables();
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    try {
 | 
					    try {
 | 
				
			||||||
      $process->mustRun();
 | 
					      $process->mustRun();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user