Copied!

Suggestion

Suggestion.php : 13
Abstract
Extends ValueObject

The base class for all value objects and structs.

Supports read-only properties by marking them as protected. In this case they will only be writable using constructor, and need to be documented using @property-read <type> <$var> annotation in class doc in addition to inline property doc. Writable properties must be public and must be documented inline.

Methods

public__construct()

Suggestion.php : 19

Construct object optionally with a set of properties.

public __construct(float $score[, string $name = null ])

Readonly properties values must be set using $properties as they aren't writable anymore after object has been created.

Parameters

Name Type Default value Description
$score float - -
$name string null -

publicgetName()

Suggestion.php : 34
public getName() : string|null

Return values

string|null

publicgetScore()

Suggestion.php : 29
public getScore() : float

Return values

float

protectedgetProperties()

ValueObject.php : 54

Returns list of available properties' names.

protected getProperties([array<int, string> $dynamicProperties = [] ]) : array<int, string>

Override to add dynamic properties.

Parameters

Name Type Default value Description
$dynamicProperties array<int, string> []

Additional dynamic properties exposed on the object

Return values

array<int, string>

Tags
Serializerignore

()