-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
nice2haveno impactno impact
Description
Sometimes fluent setter, sometimes normal. fluent setter mostly not used:
example: src/Api/Builder/CapabilityBuilder.php:withTaskdata
$capability = new Capability();
$capability->setDirection($direction);
$capability->setTechnicalMessageType(CapabilityTypeDefinitions::ISO_11783_TASKDATA_ZIP);
could be for example:
$capability = (new Capability())
->setDirection($direction)
->setTechnicalMessageType(CapabilityTypeDefinitions::ISO_11783_TASKDATA_ZIP);
saschadoemer
Metadata
Metadata
Assignees
Labels
nice2haveno impactno impact