Documentation

Interface_ extends Declaration
in package

Table of Contents

$attributeGroups  : array<string|int, AttributeGroup>
$attributes  : mixed
$constants  : mixed
$extends  : mixed
$methods  : mixed
$name  : mixed
__construct()  : mixed
Creates an interface builder.
addAttribute()  : $this
Adds an attribute group.
addStmt()  : $this
Adds a statement.
addStmts()  : $this
Adds multiple statements.
extend()  : $this
Extends one or more interfaces.
getNode()  : Interface_
Returns the built interface node.
setDocComment()  : $this
Sets doc comment for the declaration.

Properties

Methods

__construct()

Creates an interface builder.

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

Name of the interface

Return values
mixed

addStmt()

Adds a statement.

public addStmt(Stmt|Builder $stmt) : $this
Parameters
$stmt : Stmt|Builder

The statement to add

Return values
$this

The builder instance (for fluid interface)

addStmts()

Adds multiple statements.

public addStmts(array<string|int, mixed> $stmts) : $this
Parameters
$stmts : array<string|int, mixed>

The statements to add

Return values
$this

The builder instance (for fluid interface)

extend()

Extends one or more interfaces.

public extend(Name|string ...$interfaces) : $this
Parameters
$interfaces : Name|string

Names of interfaces to extend

Return values
$this

The builder instance (for fluid interface)

setDocComment()

Sets doc comment for the declaration.

public setDocComment(Doc|string $docComment) : $this
Parameters
$docComment : Doc|string

Doc comment to set

Return values
$this

The builder instance (for fluid interface)

Search results