| Total Complexity | 2 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class Customer extends BaseResource |
||
| 13 | { |
||
| 14 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 15 | /** |
||
| 16 | * @var CustomerAddress |
||
| 17 | */ |
||
| 18 | public $address; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var CustomerEmail |
||
| 22 | */ |
||
| 23 | public $email; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var CustomerName |
||
| 27 | */ |
||
| 28 | public $name; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var CustomerPhone |
||
| 32 | */ |
||
| 33 | public $phone; |
||
| 34 | |||
| 35 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 36 | /** |
||
| 37 | * Object constructor. |
||
| 38 | * |
||
| 39 | * @param ClubCollectApiClient $client The API client. |
||
| 40 | * @param array $response The API response. |
||
| 41 | * |
||
| 42 | * @throws ClubCollectApiException |
||
| 43 | */ |
||
| 44 | public function __construct(ClubCollectApiClient $client, array $response) |
||
| 65 |