Skip to content

Instantly share code, notes, and snippets.

@graemetait
Created May 9, 2014 10:08
Show Gist options
  • Save graemetait/d4945cae171e24c40982 to your computer and use it in GitHub Desktop.
Save graemetait/d4945cae171e24c40982 to your computer and use it in GitHub Desktop.
<?php
class Entity
{
public function __get($property)
{
if (property_exists($this, $property)) {
return $this->{$property};
}
}
}
$entity = new Entity;
$entity->sdfsdsd;
// null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment