Skip to content

Instantly share code, notes, and snippets.

@catherinek
Created March 22, 2011 02:34
Show Gist options
  • Save catherinek/880663 to your computer and use it in GitHub Desktop.
Save catherinek/880663 to your computer and use it in GitHub Desktop.
missing __isset in RedBean_SimpleModel
class RedBean_SimpleModel {
// ......
public function __isset( $prop ) {
return (isset($this->bean->$prop));
}
// ......
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment