Skip to content

Commit a2f01c9

Browse files
committed
CS: Apply ternary_to_null_coalescing fixer
1 parent 075316f commit a2f01c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Process.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ public function getExitCodeText()
758758
return null;
759759
}
760760

761-
return isset(self::$exitCodes[$exitcode]) ? self::$exitCodes[$exitcode] : 'Unknown error';
761+
return self::$exitCodes[$exitcode] ?? 'Unknown error';
762762
}
763763

764764
/**

0 commit comments

Comments
 (0)