*/ public function toArray(): array { return [ 'productId' => $this->productId, 'quantity' => $this->quantity, ]; } public static function fromRequest(FormRequest $request): InputDataTransferObject { return new self( productId: $request->productId, quantity: $request->quantity ); } }