Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
14 | class UpdateCustomerProfileRequest extends BaseApiRequest |
||
15 | { |
||
16 | protected $profile; |
||
17 | |||
18 | public function __construct( |
||
19 | Configuration $configuration, |
||
20 | Client $client, |
||
21 | Profile $profile = null |
||
22 | ) { |
||
23 | parent::__construct($configuration, $client); |
||
24 | $this->profile = $profile; |
||
25 | } |
||
26 | |||
27 | protected function attachData(RequestInterface $request) |
||
30 | } |
||
31 | } |
||
32 |