PHP 클래스 Webiny\Component\Annotations\Bridge\Minime\Annotations

상속: implements Webiny\Component\Annotations\Bridge\AnnotationsInterface
파일 보기 프로젝트 열기: Webiny/Framework

공개 메소드들

메소드 설명
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.