Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Location extends Component |
||
6 | { |
||
7 | protected string $name; |
||
8 | protected string $address; |
||
9 | protected float $latitude; |
||
10 | protected float $longitude; |
||
11 | |||
12 | public function __construct(string $name, string $address, float $latitude, float $longitude) |
||
18 | } |
||
19 | |||
20 | public function toArray(): array |
||
33 |