Documentation

Param
in package
implements Builder

Table of Contents

Interfaces

Builder

Properties

$attributeGroups  : array<int, AttributeGroup>
$byRef  : bool
$default  : Expr|null
$flags  : int
$name  : string
$type  : Identifier|Name|ComplexType|null
$variadic  : bool

Methods

__construct()  : mixed
Creates a parameter builder.
addAttribute()  : $this
Adds an attribute group.
getNode()  : Param
Returns the built parameter node.
makeByRef()  : $this
Make the parameter accept the value by reference.
makePrivate()  : $this
Makes the (promoted) parameter private.
makeProtected()  : $this
Makes the (promoted) parameter protected.
makePublic()  : $this
Makes the (promoted) parameter public.
makeReadonly()  : $this
Makes the (promoted) parameter readonly.
makeVariadic()  : $this
Make the parameter variadic
setDefault()  : $this
Sets default value for the parameter.
setType()  : $this
Sets type for the parameter.

Properties

$byRef

protected bool $byRef = false

$flags

protected int $flags = 0

$name

protected string $name

$variadic

protected bool $variadic = false

Methods

__construct()

Creates a parameter builder.

public __construct(string $name) : mixed
Parameters
$name : string

Name of the parameter

getNode()

Returns the built parameter node.

public getNode() : Param
Return values
Param

The built parameter node

makeByRef()

Make the parameter accept the value by reference.

public makeByRef() : $this
Return values
$this

The builder instance (for fluid interface)

makePrivate()

Makes the (promoted) parameter private.

public makePrivate() : $this
Return values
$this

The builder instance (for fluid interface)

makeProtected()

Makes the (promoted) parameter protected.

public makeProtected() : $this
Return values
$this

The builder instance (for fluid interface)

makePublic()

Makes the (promoted) parameter public.

public makePublic() : $this
Return values
$this

The builder instance (for fluid interface)

makeReadonly()

Makes the (promoted) parameter readonly.

public makeReadonly() : $this
Return values
$this

The builder instance (for fluid interface)

makeVariadic()

Make the parameter variadic

public makeVariadic() : $this
Return values
$this

The builder instance (for fluid interface)

setDefault()

Sets default value for the parameter.

public setDefault(mixed $value) : $this
Parameters
$value : mixed

Default value to use

Return values
$this

The builder instance (for fluid interface)


        
On this page

Search results