Method |
Description |
|
__construct ( array $values ) : void |
Create a new annotation instance. |
|
__get ( string $key ) : mixed |
Dynamically get a property on the annotation. |
|
__set ( string $key, mixed $value ) : void |
Dynamically set a property on the annotation. |
|
modify ( MethodEndpoint $endpoint, ReflectionMethod $method ) : void |
Apply the annotation's settings to the given endpoint. |
|
modifyCollection ( EndpointCollection $endpoints, ReflectionClass $class ) : void |
Apply the annotation's settings to the given endpoint collection. |
|
offsetExists ( string $offset ) : boolean |
Determine if the value at a given offset exists. |
|
offsetGet ( string $offset ) : mixed |
Get the value at a given offset. |
|
offsetSet ( string $offset, mixed $value ) : void |
Set the value at a given offset. |
|
offsetUnset ( string $offset ) : void |
Remove the value at a given offset. |
|