Bug fixed in the Ternary Operators (#27984)

The initial syntax was wrong. See the changelog.
This commit is contained in:
Vlăduț Ilie
2018-12-13 10:40:56 +02:00
committed by Randell Dawson
parent f9e2fdb55f
commit e545aceab8

View File

@ -103,9 +103,9 @@ There is also an alternative syntax for control structures
```php ```php
if (condition1): if (condition1):
statement1; statement1;
endif; else:
else
statement5; statement5;
endif;
``` ```
For more information check out the following link: For more information check out the following link: