Skip to content

Instantly share code, notes, and snippets.

@rizz0
Created September 10, 2013 21:15
Show Gist options
  • Save rizz0/6515812 to your computer and use it in GitHub Desktop.
Save rizz0/6515812 to your computer and use it in GitHub Desktop.
class FastEloquent extends Eloquent {
public function __get($key) {
if (array_key_exists($key, $this->attributes)) {
return $this->attributes[$key];
}
return parent::__get($key);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment