Created
June 22, 2012 14:14
-
-
Save ezimuel/2972974 to your computer and use it in GitHub Desktop.
Proposal for support ignore annotation with wildcard for Doctrine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace MyCompany\Annotations { | |
/** | |
* @Annotation | |
*/ | |
class Foo | |
{ | |
public $bar; | |
} | |
/** | |
* @Annotation | |
*/ | |
class Bar | |
{ | |
public $foo; | |
} | |
} | |
namespace { | |
/** | |
* @MyCompany\Annotations\Foo(bar="bar") | |
* @MyCompany\Annotations\Bar(foo="foo") | |
* @ZF2\Form | |
*/ | |
class User | |
{ } | |
require_once '/home/enrico/Lavoro/Git/doctrine-common/lib/Doctrine/Common/ClassLoader.php'; | |
$loader = new \Doctrine\Common\ClassLoader("Doctrine", '/home/enrico/Lavoro/Git/doctrine-common/lib'); | |
$loader->register(); | |
use Doctrine\Common\Annotations\AnnotationReader; | |
$reader = new AnnotationReader(); | |
AnnotationReader::addGlobalIgnoredName('ZF2\\*'); | |
$reflClass = new ReflectionClass('User'); | |
$classAnnotations = $reader->getClassAnnotations($reflClass); | |
var_dump($classAnnotations); | |
foreach ($classAnnotations AS $annot) { | |
if ($annot instanceof \MyCompany\Annotations\Foo) { | |
echo "Bar: {$annot->bar} \n"; // prints "foo"; | |
} else if ($annot instanceof \MyCompany\Annotations\Bar) { | |
echo "Foo: {$annot->foo} \n"; // prints "bar"; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment