Skip to content

Commit

Permalink
fix for the php 8.4 Implicitly marking parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
xiCO2k committed Jan 7, 2025
1 parent c2415bf commit ff71016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ protected function runCommands($commands, InputInterface $input, OutputInterface
* @param array $env
* @return \Symfony\Component\Process\Process
*/
protected function runCommand(string $command, InputInterface $input, OutputInterface $output, string $workingPath = null, array $env = [])
protected function runCommand(string $command, InputInterface $input, OutputInterface $output, ?string $workingPath = null, array $env = [])
{
$process = Process::fromShellCommandline($command, $workingPath, $env, null, null);

Expand Down

0 comments on commit ff71016

Please sign in to comment.