Copied!

EntryUpdateStruct

EntryUpdateStruct.php : 14
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()

EntryUpdateStruct.php : 24

Construct object optionally with a set of properties.

public __construct([int|null $quantity = null ][, MapInterface<string, mixed>|null $context = null ])

Parameters

Name Type Default value Description
$quantity int|null null -
$context MapInterface<string, mixed>|null null -

publicgetContext()

EntryUpdateStruct.php : 45
public getContext() : MapInterface<string, mixed>|null

Return values

MapInterface<string, mixed>|null

publicgetQuantity()

EntryUpdateStruct.php : 32
public getQuantity() : int|null

Return values

int|null

publicsetContext()

EntryUpdateStruct.php : 53
public setContext(MapInterface<string, mixed>|null $context) : void

Parameters

Name Type Default value Description
$context MapInterface<string, mixed>|null - -

publicsetQuantity()

EntryUpdateStruct.php : 37
public setQuantity(int|null $quantity) : void

Parameters

Name Type Default value Description
$quantity int|null - -

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

()