mirror of
https://github.com/danog/parser.git
synced 2025-01-10 14:48:33 +01:00
26 lines
221 B
PHP
26 lines
221 B
PHP
|
<?php
|
||
|
|
||
|
if ($a):
|
||
|
$a;
|
||
|
endif;
|
||
|
|
||
|
if ($a):
|
||
|
$a;
|
||
|
else:
|
||
|
$b;
|
||
|
endif;
|
||
|
|
||
|
if (true):
|
||
|
$a;
|
||
|
elseif ($foo->bar() && $baz->bar?->qux()):
|
||
|
$b;
|
||
|
endif;
|
||
|
|
||
|
if (true):
|
||
|
$a;
|
||
|
elseif (true):
|
||
|
$b;
|
||
|
elseif (true):
|
||
|
$c;
|
||
|
endif;
|