1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
|
4
|
|
|
class Barista |
5
|
|
|
{ |
6
|
|
|
private $hotDrinkDelay = 0; |
7
|
|
|
private $coldDrinkDelay = 0; |
8
|
|
|
private $hotDrinkCounter = 0; |
9
|
|
|
private $coldDrinkCounter = 0; |
10
|
|
|
|
11
|
|
|
public function setHotDrinkDelay($hotDrinkDelay) |
12
|
|
|
{ |
13
|
|
|
$this->hotDrinkDelay = (int) $hotDrinkDelay; |
14
|
|
|
} |
15
|
|
|
|
16
|
|
|
public function setColdDrinkDelay($coldDrinkDelay) |
17
|
|
|
{ |
18
|
|
|
$this->coldDrinkDelay = (int) $coldDrinkDelay; |
19
|
|
|
} |
20
|
|
|
|
21
|
|
View Code Duplication |
public function prepareHotDrink(array $orderItem) |
|
|
|
|
22
|
|
|
{ |
23
|
|
|
sleep($this->hotDrinkDelay); |
24
|
|
|
$this->hotDrinkCounter++; |
25
|
|
|
$this->printAction(false, $orderItem['order']); |
26
|
|
|
|
27
|
|
|
return $this->prepareDrink($orderItem['order'], $orderItem['type'], false); |
28
|
|
|
} |
29
|
|
|
|
30
|
|
View Code Duplication |
public function prepareColdDrink(array $orderItem) |
|
|
|
|
31
|
|
|
{ |
32
|
|
|
sleep($this->coldDrinkDelay); |
33
|
|
|
$this->coldDrinkCounter++; |
34
|
|
|
$this->printAction(true, $orderItem['order']); |
35
|
|
|
|
36
|
|
|
return $this->prepareDrink($orderItem['order'], $orderItem['type'], true); |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
protected function prepareDrink($orderNumber, $type, $iced) |
40
|
|
|
{ |
41
|
|
|
$drink = new Drink($orderNumber, $type, $iced); |
42
|
|
|
|
43
|
|
|
return $drink; |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
protected function printAction($cold, $orderNr) |
47
|
|
|
{ |
48
|
|
|
if ($cold) { |
49
|
|
|
$type = 'cold'; |
50
|
|
|
$count = $this->coldDrinkCounter; |
51
|
|
|
} else { |
52
|
|
|
$type = 'hot'; |
53
|
|
|
$count = $this->hotDrinkCounter; |
54
|
|
|
} |
55
|
|
|
$total = $this->coldDrinkCounter + $this->hotDrinkCounter; |
56
|
|
|
echo PEIP_LINE_SEPARATOR."Barista: prepared $type drink (total #$total- $type #$count) for order #$orderNr"; |
57
|
|
|
flush(); |
58
|
|
|
} |
59
|
|
|
} |
60
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.