Lines Matching refs:a

5 but also how to statically resolve the partial name of a Class into a Fully Qualified Class Name (F…
13 1. Returning a series of Value Object for given expression while resolving any partial class names,…
32 1. To resolve a Type or
33 2. To resolve a Fully Qualified Structural Element Name
39 - a php primitive or pseudo-primitive such as a string or void (`@var string` or `@return void`).
40 - a composite such as an array of string (`@var string[]`).
41 - a compound such as a string or integer (`@var string|integer`).
59 ## Resolving a type
61 In order to resolve a type you will have to instantiate the class `\phpDocumentor\Reflection\TypeRe…
69 In this example you will receive a Value Object of class `\phpDocumentor\Reflection\Types\Compound`…
79 A Fully Qualified Structural Element Name is a reference to another element in your code bases and …
87 In this example we resolve a Fully Qualified Structural Element Name (meaning that it includes the …
88 name and element name) and receive a Value Object of type `\phpDocumentor\Reflection\Fqsen`.
119 For the resolvers to know how to expand partial names you have to provide a bit of _Context_ for th…
120 a new class named `\phpDocumentor\Reflection\Types\Context` with the name of the namespace and the …
123 ### Creating a Context
125 You can do this by manually creating a Context like this:
134 …`\phpDocumentor\Reflection\Types\ContextFactory` to instantiate a new context based on a Reflector
152 After you have obtained a Context it is just a matter of passing it along with the `resolve` method…
163 the `getFqsen` method to receive a Value Object that represents the complete FQSEN. So that would b…
168 … method of the TypeResolver only returns object with the interface `Type` and the FQSEN is a common
169 > type that does not represent a Type. Also: in some cases a type can represent an "Untyped Object"…
170 > is an object (signified by the `object` keyword) but does not refer to a specific element using a…
172 Another example is on how to resolve the FQSEN of a method as can be seen with the `@see` tag in th…
180 Because Classy is a Class in the current namespace its FQSEN will have the `My\Example` namespace a…