Skip to content

Instantly share code, notes, and snippets.

@michaelklapper
Created June 2, 2013 11:43
Show Gist options
  • Save michaelklapper/5693399 to your computer and use it in GitHub Desktop.
Save michaelklapper/5693399 to your computer and use it in GitHub Desktop.
Get all classes that inherit from class xy
$classes = array_filter(get_declared_classes(), function($class){
return get_parent_class($class) === 'Morphodo\Environment\Settings\Handler\AbstractHandler';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment