MethodGenerator
extends AbstractClassElementGenerator
in package
Uses
NameTrait, DocblockTrait, AbstractFinalTrait, FunctionTrait, BodyTrait
Namespace generator class
Tags
Table of Contents
Properties
- $abstract : bool
- Method abstract flag
- $arguments : array<string|int, mixed>
- Arguments
- $body : string|null
- Method body
- $docblock : DocblockGenerator|null
- Docblock generator object
- $final : bool
- Method final flag
- $indent : int
- Code indent spaces
- $name : string|null
- Name
- $output : string|null
- Output string
- $returnTypes : array<string|int, mixed>
- Return Types
- $static : bool
- Static flag
- $visibility : string
- Visibility
Methods
- __construct() : mixed
- Constructor
- __toString() : string
- Print method
- addArgument() : static
- Add an argument
- addArguments() : static
- Add arguments
- addParameter() : static
- Add an argument (alias method for convenience)
- addParameters() : static
- Add arguments (alias method for convenience)
- addReturnType() : static
- Add a return type
- addReturnTypes() : static
- Add return types
- appendToBody() : static
- Append to the function body
- getArgument() : array<string|int, mixed>|null
- Get an argument
- getArguments() : array<string|int, mixed>
- Get the arguments
- getBody() : string|null
- Get the function body
- getDesc() : string|null
- Get the docblock description
- getDocblock() : DocblockGenerator|null
- Access the docblock generator object
- getIndent() : int
- Get the indent
- getName() : string|null
- Get the name
- getOutput() : string
- Get the output
- getParameter() : array<string|int, mixed>|null
- Get an argument (alias method for convenience)
- getParameters() : array<string|int, mixed>
- Get the arguments (alias method for convenience)
- getReturnTypes() : array<string|int, mixed>
- Get the return types
- getVisibility() : string
- Get the visibility
- hasArgument() : bool
- Has an argument
- hasArguments() : bool
- Has arguments
- hasBody() : bool
- Has method body
- hasDesc() : bool
- Has a docblock description
- hasDocblock() : bool
- Has docblock generator object
- hasIndent() : bool
- Has indent
- hasName() : bool
- Get the name
- hasOutput() : bool
- Has output
- hasParameter() : bool
- Has an argument (alias method for convenience)
- hasParameters() : bool
- Has arguments (alias method for convenience)
- hasReturnType() : bool
- Has return type
- hasReturnTypes() : bool
- Has return types
- indentBody() : static
- Append to the function body
- isAbstract() : bool
- Get the method abstract flag
- isFinal() : bool
- Get the method final flag
- isPrivate() : bool
- Set the visibility to private
- isProtected() : bool
- Set the visibility to protected
- isPublic() : bool
- Is visibility public
- isRendered() : bool
- Is rendered (alias to hasOutput())
- isStatic() : bool
- Get the static flag
- printIndent() : string
- Print the indent
- render() : string
- Render method
- setAsAbstract() : static
- Set the method abstract flag
- setAsFinal() : static
- Set the method final flag
- setAsPrivate() : AbstractClassElementGenerator
- Set the visibility to public
- setAsProtected() : AbstractClassElementGenerator
- Set the visibility to protected
- setAsPublic() : AbstractClassElementGenerator
- Set the visibility to public
- setAsStatic() : AbstractClassElementGenerator
- Set the static flag
- setBody() : static
- Set the function body
- setDesc() : static
- Set the docblock description
- setDocblock() : static
- Set the docblock generator object
- setIndent() : AbstractGenerator
- Set the indent
- setName() : static
- Set the name
- setVisibility() : AbstractClassElementGenerator
- Set the visibility
- formatArguments() : string|null
- Format the arguments
Properties
$abstract
Method abstract flag
protected
bool
$abstract
= false
$arguments
Arguments
protected
array<string|int, mixed>
$arguments
= []
$body
Method body
protected
string|null
$body
= null
string
$docblock
Docblock generator object
protected
DocblockGenerator|null
$docblock
= null
$final
Method final flag
protected
bool
$final
= false
$indent
Code indent spaces
protected
int
$indent
= 4
$name
Name
protected
string|null
$name
= null
$output
Output string
protected
string|null
$output
= null
$returnTypes
Return Types
protected
array<string|int, mixed>
$returnTypes
= []
$static
Static flag
protected
bool
$static
= false
$visibility
Visibility
protected
string
$visibility
= 'public'
Methods
__construct()
Constructor
public
__construct(string $name[, string $visibility = 'public' ][, bool $static = false ]) : mixed
Instantiate the method generator object
Parameters
- $name : string
- $visibility : string = 'public'
- $static : bool = false
Tags
__toString()
Print method
public
__toString() : string
Return values
stringaddArgument()
Add an argument
public
addArgument(string $name[, mixed $value = null ][, string|null $type = null ]) : static
Parameters
- $name : string
- $value : mixed = null
- $type : string|null = null
Return values
staticaddArguments()
Add arguments
public
addArguments(array<string|int, mixed> $args) : static
Parameters
- $args : array<string|int, mixed>
Tags
Return values
staticaddParameter()
Add an argument (alias method for convenience)
public
addParameter(string $name[, mixed $value = null ][, string|null $type = null ]) : static
Parameters
- $name : string
- $value : mixed = null
- $type : string|null = null
Return values
staticaddParameters()
Add arguments (alias method for convenience)
public
addParameters(array<string|int, mixed> $args) : static
Parameters
- $args : array<string|int, mixed>
Return values
staticaddReturnType()
Add a return type
public
addReturnType(string $type) : static
Parameters
- $type : string
Return values
staticaddReturnTypes()
Add return types
public
addReturnTypes(array<string|int, mixed> $types) : static
Parameters
- $types : array<string|int, mixed>
Return values
staticappendToBody()
Append to the function body
public
appendToBody(string $body) : static
Parameters
- $body : string
Return values
staticgetArgument()
Get an argument
public
getArgument(string $name) : array<string|int, mixed>|null
Parameters
- $name : string
Return values
array<string|int, mixed>|nullgetArguments()
Get the arguments
public
getArguments() : array<string|int, mixed>
Return values
array<string|int, mixed>getBody()
Get the function body
public
getBody() : string|null
Return values
string|nullgetDesc()
Get the docblock description
public
getDesc() : string|null
Return values
string|nullgetDocblock()
Access the docblock generator object
public
getDocblock() : DocblockGenerator|null
Return values
DocblockGenerator|nullgetIndent()
Get the indent
public
getIndent() : int
Return values
intgetName()
Get the name
public
getName() : string|null
Return values
string|nullgetOutput()
Get the output
public
getOutput() : string
Return values
stringgetParameter()
Get an argument (alias method for convenience)
public
getParameter(string $name) : array<string|int, mixed>|null
Parameters
- $name : string
Return values
array<string|int, mixed>|nullgetParameters()
Get the arguments (alias method for convenience)
public
getParameters() : array<string|int, mixed>
Return values
array<string|int, mixed>getReturnTypes()
Get the return types
public
getReturnTypes() : array<string|int, mixed>
Return values
array<string|int, mixed>getVisibility()
Get the visibility
public
getVisibility() : string
Return values
stringhasArgument()
Has an argument
public
hasArgument(string $name) : bool
Parameters
- $name : string
Return values
boolhasArguments()
Has arguments
public
hasArguments() : bool
Return values
boolhasBody()
Has method body
public
hasBody() : bool
Return values
boolhasDesc()
Has a docblock description
public
hasDesc() : bool
Return values
boolhasDocblock()
Has docblock generator object
public
hasDocblock() : bool
Return values
boolhasIndent()
Has indent
public
hasIndent() : bool
Return values
boolhasName()
Get the name
public
hasName() : bool
Return values
boolhasOutput()
Has output
public
hasOutput() : bool
Return values
boolhasParameter()
Has an argument (alias method for convenience)
public
hasParameter(string $name) : bool
Parameters
- $name : string
Return values
boolhasParameters()
Has arguments (alias method for convenience)
public
hasParameters() : bool
Return values
boolhasReturnType()
Has return type
public
hasReturnType(string $type) : bool
Parameters
- $type : string
Return values
boolhasReturnTypes()
Has return types
public
hasReturnTypes() : bool
Return values
boolindentBody()
Append to the function body
public
indentBody(int $indent) : static
Parameters
- $indent : int
Return values
staticisAbstract()
Get the method abstract flag
public
isAbstract() : bool
Return values
boolisFinal()
Get the method final flag
public
isFinal() : bool
Return values
boolisPrivate()
Set the visibility to private
public
isPrivate() : bool
Return values
boolisProtected()
Set the visibility to protected
public
isProtected() : bool
Return values
boolisPublic()
Is visibility public
public
isPublic() : bool
Return values
boolisRendered()
Is rendered (alias to hasOutput())
public
isRendered() : bool
Return values
boolisStatic()
Get the static flag
public
isStatic() : bool
Return values
boolprintIndent()
Print the indent
public
printIndent() : string
Return values
stringrender()
Render method
public
render() : string
Return values
stringsetAsAbstract()
Set the method abstract flag
public
setAsAbstract([bool $abstract = true ]) : static
Parameters
- $abstract : bool = true
Return values
staticsetAsFinal()
Set the method final flag
public
setAsFinal([bool $final = true ]) : static
Parameters
- $final : bool = true
Return values
staticsetAsPrivate()
Set the visibility to public
public
setAsPrivate() : AbstractClassElementGenerator
Tags
Return values
AbstractClassElementGeneratorsetAsProtected()
Set the visibility to protected
public
setAsProtected() : AbstractClassElementGenerator
Tags
Return values
AbstractClassElementGeneratorsetAsPublic()
Set the visibility to public
public
setAsPublic() : AbstractClassElementGenerator
Tags
Return values
AbstractClassElementGeneratorsetAsStatic()
Set the static flag
public
setAsStatic([bool $static = true ]) : AbstractClassElementGenerator
Parameters
- $static : bool = true
Return values
AbstractClassElementGeneratorsetBody()
Set the function body
public
setBody(string $body[, int $indent = 4 ]) : static
Parameters
- $body : string
- $indent : int = 4
Return values
staticsetDesc()
Set the docblock description
public
setDesc([string|null $desc = null ]) : static
Parameters
- $desc : string|null = null
Return values
staticsetDocblock()
Set the docblock generator object
public
setDocblock(DocblockGenerator $docblock) : static
Parameters
- $docblock : DocblockGenerator
Return values
staticsetIndent()
Set the indent
public
setIndent(int $indent) : AbstractGenerator
Parameters
- $indent : int
Return values
AbstractGeneratorsetName()
Set the name
public
setName(string $name) : static
Parameters
- $name : string
Return values
staticsetVisibility()
Set the visibility
public
setVisibility([string $visibility = 'public' ]) : AbstractClassElementGenerator
Parameters
- $visibility : string = 'public'
Tags
Return values
AbstractClassElementGeneratorformatArguments()
Format the arguments
protected
formatArguments() : string|null