Created
March 22, 2011 02:34
-
-
Save catherinek/880663 to your computer and use it in GitHub Desktop.
missing __isset in RedBean_SimpleModel
This file contains 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 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