mirror of
https://github.com/danog/parser.git
synced 2024-12-02 17:38:16 +01:00
11 lines
134 B
PHP
11 lines
134 B
PHP
<?php
|
|
|
|
switch ($foo) {
|
|
case 'foo':
|
|
break;
|
|
case 'bar':
|
|
case 'baz':
|
|
echo $foo;
|
|
default:
|
|
break;
|
|
} |