Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class Location extends PlaceType |
||
10 | { |
||
11 | /** |
||
12 | * @inheritdoc |
||
13 | */ |
||
14 | public function __construct($name = "") |
||
15 | { |
||
16 | $this->originalWeight = 1; |
||
17 | |||
18 | parent::__construct($name); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Describe if the place will be walkable or not |
||
23 | * |
||
24 | * @return boolean |
||
25 | */ |
||
26 | public function isWalkable() |
||
29 | } |
||
30 | } |