Methods

setFullyQualifiedStructuralElementName()

setFullyQualifiedStructuralElementName(string  $name) : void

Sets the Fully Qualified Structural Element Name (FQSEN) for this element.

Parameters

string $name

getFullyQualifiedStructuralElementName()

getFullyQualifiedStructuralElementName() : string

Returns the Fully Qualified Structural Element Name (FQSEN) for this element.

Returns

string

setName()

setName(string  $name) : void

Sets the local name for this element.

Parameters

string $name

getName()

getName() : string

Returns the local name for this element.

Returns

string

setSummary()

setSummary(string  $summary) : void

Sets a summary describing this element.

Parameters

string $summary

getSummary()

getSummary() : string

Returns the summary describing this element.

Returns

string

setDescription()

setDescription(string  $description) : void

Sets a longer description for this element.

Parameters

string $description

getDescription()

getDescription() : string

Returns a longer description for this element.

Returns

string

setLocation()

setLocation(\phpDocumentor\Descriptor\FileDescriptor  $file, integer  $line) : void

Sets the file and location for this element.

Parameters

\phpDocumentor\Descriptor\FileDescriptor $file
integer $line

getPath()

getPath() : string

Returns the file location for this element relative to the project root.

Returns

string

getLine()

getLine() : integer

Returns the line number where this element may be found.

Returns

integer

setDefault()

setDefault(string  $default) : void

Stores a textual representation of the default value for a property.

Parameters

string $default

getDefault()

getDefault() : string

Returns the textual representation of the default value for a property.

Returns

string

setStatic()

setStatic(boolean  $static) : void

Sets whether this property is static in scope.

Parameters

boolean $static

isStatic()

isStatic() : boolean

Returns whether this property is static in scope.

Returns

boolean

setTypes()

setTypes(\phpDocumentor\Descriptor\Collection  $types) : void

Sets the types associated with the value(s) for this property.

Parameters

\phpDocumentor\Descriptor\Collection $types

getTypes()

getTypes() : array<mixed,string>

Returns the types associated with the value(s) for this property.

Returns

array<mixed,string>

setVisibility()

setVisibility(string  $visibility) : string

Sets whether this property is available from inside or outside its class and/or descendants.

Parameters

string $visibility

May be either 'public', 'private' or 'protected'.

Returns

string