1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-05 14:27:51 +02:00

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

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');