Skip to content

Commit 910b30e

Browse files
Fix return statements
1 parent dcd467d commit 910b30e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Process.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ public function getExitCode()
722722
public function getExitCodeText()
723723
{
724724
if (null === $exitcode = $this->getExitCode()) {
725-
return;
725+
return null;
726726
}
727727

728728
return isset(self::$exitCodes[$exitcode]) ? self::$exitCodes[$exitcode] : 'Unknown error';

0 commit comments

Comments
 (0)