Remove an extra double quote

This commit is contained in:
Suhayb Alghutaymil 2020-01-22 13:49:33 +03:00 committed by GitHub
parent 1eecfded69
commit dc7996c6e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -289,7 +289,7 @@ if (false) {
print (false ? 'Does not get printed' : 'Does');
// ternary shortcut operator since PHP 5.3
// equivalent of "$x ? $x : 'Does'""
// equivalent of "$x ? $x : 'Does'"
$x = false;
print($x ?: 'Does');