1 | <?php |
||
10 | final class Phone implements Resource, Blacklistable |
||
11 | { |
||
12 | use Type; |
||
13 | use Blacklisted; |
||
14 | |||
15 | private $countryCode; |
||
16 | |||
17 | private $number; |
||
18 | |||
19 | public function __construct( |
||
28 | |||
29 | public function __toString() |
||
33 | |||
34 | public function countryCode() |
||
38 | |||
39 | public function number() |
||
43 | |||
44 | public function render($prependCountryCode = true) |
||
51 | } |
||
52 |