PHP Класс Webiny\Component\Annotations\Bridge\Minime\Annotations

Наследование: implements Webiny\Component\Annotations\Bridge\AnnotationsInterface
Показать файл Открыть проект

Открытые методы

Метод Описание
getClassAnnotations ( string $class ) : array Get all annotations for the given class.
getMethodAnnotations ( string $class, string $method ) : array Get all annotations for the method name on the given class.
getPropertyAnnotations ( string $class, string $property ) : array Get all annotations for the property name on the given class.

Приватные методы

Метод Описание
parseAnnotations ( Reflector $reflector )

Описание методов

getClassAnnotations() публичный Метод

Get all annotations for the given class.
public getClassAnnotations ( string $class ) : array
$class string Fully qualified class name
Результат array An associative array with all annotations.

getMethodAnnotations() публичный Метод

Get all annotations for the method name on the given class.
public getMethodAnnotations ( string $class, string $method ) : array
$class string Fully qualified class name
$method string Method name
Результат array An associative array with all annotations.

getPropertyAnnotations() публичный Метод

Get all annotations for the property name on the given class.
public getPropertyAnnotations ( string $class, string $property ) : array
$class string Fully qualified class name
$property string Property name
Результат array An associative array with all annotations.