Skip to content

Instantly share code, notes, and snippets.

@blar
Created August 2, 2014 14:43
Show Gist options
  • Select an option

  • Save blar/21f0f21c84ec5f502ee8 to your computer and use it in GitHub Desktop.

Select an option

Save blar/21f0f21c84ec5f502ee8 to your computer and use it in GitHub Desktop.
<?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