-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMotorcycle.php
More file actions
69 lines (60 loc) · 1.8 KB
/
Motorcycle.php
File metadata and controls
69 lines (60 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
namespace ClassyTransport;
use Exception;
require_once __DIR__.'/Vehicle.php';
class Motorcycle extends Vehicle{
private string $engineType;
public function __construct(
string $make,
string $model,
int $width,
int $height,
int $length,
int $horsepower,
int $numOfCylinders,
string $fuelType,
string $engineType
) {
parent::__construct(
$make,
$model,
$width,
$height,
$length,
$horsepower,
$numOfCylinders,
$fuelType,
$driveType = 'Rear Wheel',
$doors = 'None',
$windows = 'None',
$tires = 'Standard'
);
$this->engineType = $engineType;
}
//to string method to display properties of Honda Class
public function __toString():string {
$str = "Make: " . $this->getMake() . "<br>" .
"Model: " . $this->getModel() . "<br>" .
"Width: " . $this->getWidth() . "in<br>" .
"Height: " . $this->getHeight() . "in<br>" .
"Length: " . $this->getLength() . "in<br>";
$str .= "Engine: " . "<br>";
$keys = array_keys($this->engine);
foreach($this->getEngine() as $key => $value) {
$str .= $key . ": " . $value . "<br>";
}
foreach($this->getDriveType() as $key => $value) {
if($value) {
$str .= "Drive Type: " . $key . "<br>";
}
}
$str .= "Doors: " . $this->getDoors() . "<br>" .
"Windows: " . $this->getWindows() . "<br>" .
"Tires: " . $this->getTires();
return $str;
}
public function getEngineType() {
return $this->$engineType;
}
}
?>