Created
September 21, 2015 11:52
-
-
Save anonymous/11bb7f2b7e8be94bea4a 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
class Feelings { | |
private $sad = True; | |
private $sad_called = False; | |
public function sad() { | |
$return = $this->sad_called ? $this : $this->sad; | |
$this->sad_called = true; | |
return $return; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment