1 | <?php |
||
5 | class Car extends Machine |
||
6 | { |
||
7 | /** |
||
8 | * @var int |
||
9 | */ |
||
10 | private $numberOfSeats; |
||
11 | |||
12 | /** |
||
13 | * @param string $name |
||
14 | * @param int $numberOfSeats |
||
15 | */ |
||
16 | public function __construct($name, $numberOfSeats) |
||
17 | { |
||
18 | parent::__construct($name); |
||
19 | $this->numberOfSeats = $numberOfSeats; |
||
20 | } |
||
21 | } |
||
22 |