Skip to content

Commit 0855a1d

Browse files
committed
Merge branch '4.4' into 5.1
* 4.4: CS: Apply ternary_to_null_coalescing fixer
2 parents 8063b99 + a2f01c9 commit 0855a1d

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
@@ -754,7 +754,7 @@ public function getExitCodeText()
754754
return null;
755755
}
756756

757-
return isset(self::$exitCodes[$exitcode]) ? self::$exitCodes[$exitcode] : 'Unknown error';
757+
return self::$exitCodes[$exitcode] ?? 'Unknown error';
758758
}
759759

760760
/**

0 commit comments

Comments
 (0)