Skip to content

Instantly share code, notes, and snippets.

@ringmaster
Created November 29, 2011 16:05
Show Gist options
  • Save ringmaster/1405324 to your computer and use it in GitHub Desktop.
Save ringmaster/1405324 to your computer and use it in GitHub Desktop.
PHP 5.4 Factory trait
trait Factory {
public function create() {
$class = get_called_class();
$args = func_get_args();
$r_class = new \ReflectionClass($class);
return $r_class->newInstanceArgs( $args );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment