@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | class PhoneNumber implements Contracts\PhoneNumberInterface |
| 24 | 24 | { |
| 25 | - protected int|string $number; |
|
| 25 | + protected int | string $number; |
|
| 26 | 26 | |
| 27 | 27 | protected ?int $IDDCode; |
| 28 | 28 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | /** |
| 34 | 34 | * PhoneNumberInterface constructor. |
| 35 | 35 | */ |
| 36 | - public function __construct(int|string $numberWithoutIDDCode, ?string $IDDCode = null) |
|
| 36 | + public function __construct(int | string $numberWithoutIDDCode, ?string $IDDCode = null) |
|
| 37 | 37 | { |
| 38 | 38 | $this->phoneUtil = PhoneNumberUtil::getInstance(); |
| 39 | 39 | $numberStr = (string) $numberWithoutIDDCode; |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | /** |
| 92 | 92 | * 18888888888. |
| 93 | 93 | */ |
| 94 | - public function getNumber(): int|string |
|
| 94 | + public function getNumber(): int | string |
|
| 95 | 95 | { |
| 96 | 96 | return $this->number; |
| 97 | 97 | } |