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
1 changed files with 2 additions and 0 deletions

View File

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