Open aik099 opened 9 years ago
The shorthand ternary operator was introduced in PHP 5.3 and is regular ternary operator with TRUE part missing: $value ?: $default. Need to validate/fix, that no whitespace are present between ? and : if whitespace is the only content between them.
$value ?: $default
?
:
The shorthand ternary operator was introduced in PHP 5.3 and is regular ternary operator with TRUE part missing:
$value ?: $default
. Need to validate/fix, that no whitespace are present between?
and:
if whitespace is the only content between them.