forked from merklik/refactoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMovie.php
59 lines (49 loc) · 1.27 KB
/
Movie.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
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace Refactoring;
require_once("Price/Price.php");
require_once("Price/Childrens.php");
require_once("Price/NewRelease.php");
require_once("Price/Regular.php");
class Movie
{
const CHILDRENS = 2;
const REGULAR = 0;
const NEW_RELEASE = 1;
private $title;
/** @var Price */
private $price;
function __construct($title, $priceCode)
{
$this->title = $title;
$this->setPriceCode($priceCode);
}
public function setPriceCode($priceCode)
{
switch($priceCode)
{
case Movie::REGULAR:
$this->price = new RegularPrice();
break;
case Movie::NEW_RELEASE:
$this->price = new NewReleasePrice();
break;
case Movie::CHILDRENS:
$this->price = new ChildrensPrice();
break;
default:
throw new \Exception("Illegal Price Code");
}
}
public function getTitle()
{
return $this->title;
}
public function getCharge($daysRented)
{
return $this->price->getCharge($daysRented);
}
public function getFrequentRenterPoints($daysRented)
{
return $this->price->getFrequentRenterPoints($daysRented);
}
}