| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class CustomerPhone extends BaseResource |
||
| 14 | { |
||
| 15 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 16 | /** |
||
| 17 | * @var string|null |
||
| 18 | */ |
||
| 19 | public $countryCode; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string|null |
||
| 23 | */ |
||
| 24 | public $phoneNumber; |
||
| 25 | |||
| 26 | //-------------------------------------------------------------------------------------------------------------------- |
||
| 27 | /** |
||
| 28 | * Object constructor. |
||
| 29 | * |
||
| 30 | * @param ClubCollectApiClient $client The API client. |
||
| 31 | * @param array $response The API response. |
||
| 32 | * |
||
| 33 | * @throws ClubCollectApiException |
||
| 34 | */ |
||
| 35 | public function __construct(ClubCollectApiClient $client, array $response) |
||
| 54 |