Skip to content

Instantly share code, notes, and snippets.

Created September 21, 2015 11:52
Show Gist options
  • Save anonymous/11bb7f2b7e8be94bea4a to your computer and use it in GitHub Desktop.
Save anonymous/11bb7f2b7e8be94bea4a to your computer and use it in GitHub Desktop.
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