PHP 클래스 PhpParser\Builder\Property

상속: extends PhpParser\BuilderAbstract
파일 보기 프로젝트 열기: nikic/php-parser 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$attributes
$default
$flags
$name

공개 메소드들

메소드 설명
__construct ( string $name ) Creates a property builder.
getNode ( ) : Property Returns the built class node.
makePrivate ( ) Makes the property private.
makeProtected ( ) Makes the property protected.
makePublic ( ) Makes the property public.
makeStatic ( ) Makes the property static.
setDefault ( mixed $value ) Sets default value for the property.
setDocComment ( PhpParser\Comment\Doc | string $docComment ) Sets doc comment for the property.

메소드 상세

__construct() 공개 메소드

Creates a property builder.
public __construct ( string $name )
$name string Name of the property

getNode() 공개 메소드

Returns the built class node.
public getNode ( ) : Property
리턴 PhpParser\Node\Stmt\Property The built property node

makePrivate() 공개 메소드

Makes the property private.
public makePrivate ( )

makeProtected() 공개 메소드

Makes the property protected.
public makeProtected ( )

makePublic() 공개 메소드

Makes the property public.
public makePublic ( )

makeStatic() 공개 메소드

Makes the property static.
public makeStatic ( )

setDefault() 공개 메소드

Sets default value for the property.
public setDefault ( mixed $value )
$value mixed Default value to use

setDocComment() 공개 메소드

Sets doc comment for the property.
public setDocComment ( PhpParser\Comment\Doc | string $docComment )
$docComment PhpParser\Comment\Doc | string Doc comment to set

프로퍼티 상세

$attributes 보호되어 있는 프로퍼티

protected $attributes

$default 보호되어 있는 프로퍼티

protected $default

$flags 보호되어 있는 프로퍼티

protected $flags

$name 보호되어 있는 프로퍼티

protected $name