Merge pull request #531 from markhuot/develop

Syncing Up Magic Methods
This commit is contained in:
Taylor Otwell 2012-04-18 18:50:19 -07:00
commit b9d573467a

View File

@ -650,6 +650,8 @@ abstract class Model {
{
if (array_key_exists($key, $this->$source)) return true;
}
if (method_exists($this, $key)) return true;
}
/**