Documentation

MethodAssembler extends AssemblerAbstract
in package

Assembles a MethodDescriptor from a MethodReflector.

Tags
extends

AssemblerAbstract<MethodDescriptor, Method>

Table of Contents

$argumentAssembler  : ArgumentAssembler
$builder  : ProjectDescriptorBuilder|null
$reducers  : array<string|int, AssemblerReducer>
__construct()  : mixed
Initializes this assembler with its dependencies.
create()  : TDescriptor|null
Creates a Descriptor from the provided data.
deduplicateTypes()  : Type|null
getBuilder()  : ProjectDescriptorBuilder|null
Returns the builder for this Assembler or null if none is set.
setBuilder()  : void
Registers the Builder with this Assembler.
addArgument()  : void
Adds a single reflected Argument to the Method Descriptor.
addArguments()  : void
Adds the reflected Arguments to the Descriptor.
addVariadicArgument()  : void
Checks if there is a variadic argument in the `@param` tags and adds it to the list of Arguments in the Descriptor unless there is already one present.
assembleDocBlock()  : void
Assemble DocBlock.
buildDescriptor()  : TDescriptor|null
extractPackageFromDocBlock()  : string|null
Extracts the package from the DocBlock.
mapReflectorToDescriptor()  : void
Maps the fields to the reflector to the descriptor.
pretifyValue()  : string|null

Properties

Methods

create()

Creates a Descriptor from the provided data.

public create(Method $data) : TDescriptor|null
Parameters
$data : Method
Return values
TDescriptor|null

deduplicateTypes()

public static deduplicateTypes(Type|null $type) : Type|null
Parameters
$type : Type|null
Tags
deprecated

the functionality in this method has been moved to the Compound type in the latest unreleased version of the TypeResolver library

Return values
Type|null

addVariadicArgument()

Checks if there is a variadic argument in the `@param` tags and adds it to the list of Arguments in the Descriptor unless there is already one present.

protected addVariadicArgument(Method $data, MethodDescriptor $methodDescriptor) : void
Parameters
$data : Method
$methodDescriptor : MethodDescriptor
Return values
void

buildDescriptor()

protected buildDescriptor(TInput $data) : TDescriptor|null
Parameters
$data : TInput
Return values
TDescriptor|null

extractPackageFromDocBlock()

Extracts the package from the DocBlock.

protected extractPackageFromDocBlock(DocBlock|null $docBlock) : string|null
Parameters
$docBlock : DocBlock|null
Return values
string|null

pretifyValue()

protected pretifyValue(string|null $value) : string|null
Parameters
$value : string|null
Return values
string|null

Search results