PHP 클래스 lithium\analysis\Docblock
This parser may be used as the basis for a variety of secondary tools, including
a reflection-based API generator, a code metrics analyzer, and various other possible
use cases.
파일 보기
프로젝트 열기: unionofrad/lithium
1 사용 예제들
공개 프로퍼티들
프로퍼티 |
타입 |
설명 |
|
$tags |
array |
List of supported docblock tags. |
|
공개 메소드들
메소드 |
설명 |
|
comment ( string $comment ) : array |
Parses a doc block into its major components of description, text and tags. |
|
tags ( string $string ) : array |
Parses @ docblock tags and their descriptions from a docblock. |
|
보호된 메소드들
메소드 |
설명 |
|
_params ( array $params ) : array |
Parses @param docblock tags to separate out the parameter type from the description. |
|
메소드 상세
Parses @param docblock tags to separate out the parameter type from the description.
protected static _params ( array $params ) : array |
$params |
array |
An array of `@param` tags, as parsed from the `tags()` method. |
리턴 |
array |
Returns an array where each key is a parameter name, and each value is an
associative array containing `'type'` and `'text'` keys. |
프로퍼티 상세