1 | <?php |
||
5 | final class Calculator |
||
6 | { |
||
7 | /** @var City[] */ |
||
8 | private $cities; |
||
9 | |||
10 | /** @var Product[] */ |
||
11 | private $products; |
||
12 | |||
13 | 1 | public function __construct(array $some_cities, array $some_products) |
|
18 | |||
19 | 1 | public function findBestCity(): City |
|
50 | |||
51 | 1 | private function cityByName(string $name): City |
|
63 | } |
||
64 |