Last active
December 11, 2015 01:34
-
-
Save Shaked/13b61d6a41554caeb26f to your computer and use it in GitHub Desktop.
.in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //passes: StripUnUsedSemiColon | |
| function x() { | |
| }; | |
| $x = "a"; | |
| if ($x) {}; | |
| if ($x) { | |
| do($x); | |
| }; | |
| class X { | |
| public function t() { | |
| switch($x) { | |
| case "f": | |
| return function(){ | |
| x(); | |
| }; | |
| break; | |
| }; | |
| }; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //passes: StripUnUsedSemiColon | |
| function x() { | |
| } | |
| $x = "a"; | |
| if ($x) {} | |
| if ($x) { | |
| do($x); | |
| } | |
| class X { | |
| public function t() { | |
| switch ($x) { | |
| case "f": | |
| return function () { | |
| x(); | |
| }; | |
| break; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment