Skip to content

Commit 1455438

Browse files
committed
Merge branch '5.1' into 5.2
* 5.1: CS: Apply ternary_to_null_coalescing fixer
2 parents bd8815b + 0855a1d commit 1455438

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
@@ -756,7 +756,7 @@ public function getExitCodeText()
756756
return null;
757757
}
758758

759-
return isset(self::$exitCodes[$exitcode]) ? self::$exitCodes[$exitcode] : 'Unknown error';
759+
return self::$exitCodes[$exitcode] ?? 'Unknown error';
760760
}
761761

762762
/**

0 commit comments

Comments
 (0)