Aura.Payload icon indicating copy to clipboard operation
Aura.Payload copied to clipboard

A Domain Payload implementation.

Results 2 Aura.Payload issues
Sort by recently updated
recently updated
newest added

Shouldn't the `Aura\Payload\PayloadFactory` have more methods; especially when creating payloads of different statuses. E.g. ```php $foundPayload = $this->payloadFactory->found()->setOutput(...); $notFoundPayload = $this->payloadFactory->notFound()->setMessages(['Resource is missing.']); ``` I can write the PR if...

Did you envision the `$messages` attribute to be an array of messages, similar to the `$output` attribute, which is often treated as shown in the example below. I realize how...