Lines Matching refs:Reflection

43   or `@var \phpDocumentor\Reflection\TypeResolver`)
61 In order to resolve a type you will have to instantiate the class `\phpDocumentor\Reflection\TypeRe…
65 $typeResolver = new \phpDocumentor\Reflection\TypeResolver();
69 In this example you will receive a Value Object of class `\phpDocumentor\Reflection\Types\Compound`…
70 elements, one of type `\phpDocumentor\Reflection\Types\String_` and one of type
71 `\phpDocumentor\Reflection\Types\Integer`.
74 in order to do that we need an additional `\phpDocumentor\Reflection\Types\Context` class that will…
80 the `\phpDocumentor\Reflection\FqsenResolver` class' `resolve` method, like this:
83 $fqsenResolver = new \phpDocumentor\Reflection\FqsenResolver();
84 $fqsen = $fqsenResolver->resolve('\phpDocumentor\Reflection\FqsenResolver::resolve()');
88 name and element name) and receive a Value Object of type `\phpDocumentor\Reflection\Fqsen`.
91 Element Names; but in order to do that we need an additional `\phpDocumentor\Reflection\Types\Conte…
104 use phpDocumentor\Reflection\Types;
120 a new class named `\phpDocumentor\Reflection\Types\Context` with the name of the namespace and the …
128 $context = new \phpDocumentor\Reflection\Types\Context(
130 [ 'Types' => '\phpDocumentor\Reflection\Types']
134 Or by using the `\phpDocumentor\Reflection\Types\ContextFactory` to instantiate a new context based…
139 $contextFactory = new \phpDocumentor\Reflection\Types\ContextFactory();
146 $contextFactory = new \phpDocumentor\Reflection\Types\ContextFactory();
158 $typeResolver = new \phpDocumentor\Reflection\TypeResolver();
162 When you do this you will receive an object of class `\phpDocumentor\Reflection\Types\Object_` for …
164 `phpDocumentor\Reflection\Types\Context`.
176 $fqsenResolver = new \phpDocumentor\Reflection\FqsenResolver();