Property
in package
implements
Builder
Table of Contents
Interfaces
Properties
- $attributeGroups : array<int, AttributeGroup>
- $attributes : array<string, mixed>
- $default : Expr|null
- $flags : int
- $name : string
- $type : null|Identifier|Name|ComplexType
Methods
- __construct() : mixed
- Creates a property builder.
- addAttribute() : $this
- Adds an attribute group.
- getNode() : Property
- Returns the built class node.
- makePrivate() : $this
- Makes the property private.
- makeProtected() : $this
- Makes the property protected.
- makePublic() : $this
- Makes the property public.
- makeReadonly() : $this
- Makes the property readonly.
- makeStatic() : $this
- Makes the property static.
- setDefault() : $this
- Sets default value for the property.
- setDocComment() : $this
- Sets doc comment for the property.
- setType() : $this
- Sets the property type for PHP 7.4+.
Properties
$attributeGroups
protected
array<int, AttributeGroup>
$attributeGroups
= []
$attributes
protected
array<string, mixed>
$attributes
= []
$default
protected
Expr|null
$default
= null
$flags
protected
int
$flags
= 0
$name
protected
string
$name
$type
protected
null|Identifier|Name|ComplexType
$type
= null
Methods
__construct()
Creates a property builder.
public
__construct(string $name) : mixed
Parameters
- $name : string
-
Name of the property
addAttribute()
Adds an attribute group.
public
addAttribute(Attribute|AttributeGroup $attribute) : $this
Parameters
- $attribute : Attribute|AttributeGroup
Return values
$this —The builder instance (for fluid interface)
getNode()
Returns the built class node.
public
getNode() : Property
Return values
Property —The built property node
makePrivate()
Makes the property private.
public
makePrivate() : $this
Return values
$this —The builder instance (for fluid interface)
makeProtected()
Makes the property protected.
public
makeProtected() : $this
Return values
$this —The builder instance (for fluid interface)
makePublic()
Makes the property public.
public
makePublic() : $this
Return values
$this —The builder instance (for fluid interface)
makeReadonly()
Makes the property readonly.
public
makeReadonly() : $this
Return values
$this —The builder instance (for fluid interface)
makeStatic()
Makes the property static.
public
makeStatic() : $this
Return values
$this —The builder instance (for fluid interface)
setDefault()
Sets default value for the property.
public
setDefault(mixed $value) : $this
Parameters
- $value : mixed
-
Default value to use
Return values
$this —The builder instance (for fluid interface)
setDocComment()
Sets doc comment for the property.
public
setDocComment(Doc|string $docComment) : $this
Parameters
- $docComment : Doc|string
-
Doc comment to set
Return values
$this —The builder instance (for fluid interface)
setType()
Sets the property type for PHP 7.4+.
public
setType(string|Name|Identifier|ComplexType $type) : $this
Parameters
- $type : string|Name|Identifier|ComplexType