-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cappuccino.php
48 lines (39 loc) · 1.17 KB
/
Cappuccino.php
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
<?php
declare(strict_types=1);
class Cappuccino implements drinkInterface
{
private $name;
private $ingredients;
public function __construct()
{
$this->name = "Cappuccino";
$this->ingredients = [
"Coffee Beans",
"Milk",
"Hot Water"
];
}
public function drinkName(): string
{
return $this->name;
}
public function serve(string $size, array $extras): string
{
$ingredients = "";
foreach ($this->ingredients as $ingredient) {
$ingredients = $ingredients . ", " . $ingredient;
}
if (count($extras) == 0){
return "Serving a " . $size . " " . $this->name . " made with". $ingredients . " and no extras" . "\n\n";
}
$extrasString = "";
foreach ($extras as $key => $extra){
if (count($extras) > 1){
$extrasString = $extrasString . " and " . $extra;
} else {
$extrasString = " " . $extra;
}
}
return "Serving a " . $size . " " . $this->name . " made with". $ingredients . " and extras of" . $extrasString ."\n\n";
}
}