Created
August 2, 2014 14:43
-
-
Save blar/21f0f21c84ec5f502ee8 to your computer and use it in GitHub Desktop.
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 | |
| class Boolean extends SplBool { | |
| public function toggle() { | |
| $this -= 1; | |
| return $this; | |
| } | |
| } | |
| $boolean = new Boolean(true); | |
| var_dump((boolean) $boolean->toggle()); | |
| var_dump((boolean) $boolean->toggle()); | |
| var_dump((boolean) $boolean->toggle()); | |
| var_dump((boolean) $boolean->toggle()); | |
| bool(false) | |
| bool(true) | |
| bool(false) | |
| bool(true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment