| 123456789101112131415161718192021 |
- <?php
- namespace App\Data\Pagarme\Response\PagarmeCustomerResponseData\PagarmeCustomerPhonesResponseData;
- final readonly class PagarmePhoneResponseData
- {
- public function __construct(
- public ?string $countryCode,
- public ?string $areaCode,
- public ?string $number,
- ) {}
- public function toArray(): array
- {
- return [
- 'country_code' => $this->countryCode,
- 'area_code' => $this->areaCode,
- 'number' => $this->number,
- ];
- }
- }
|