forked from cbergau/PHPDesignPatterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactory_method.php
71 lines (63 loc) · 1.53 KB
/
factory_method.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
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/**
* Factory method pattern example
*
* @author Christian Bergau <[email protected]>
* @copyright Free for all
* @link http://en.wikipedia.org/wiki/Factory_pattern
*/
interface ProductInterface
{
public function getName();
}
class ConcreteProduct implements ProductInterface
{
public function getName()
{
return 'ConcreteProduct';
}
}
class AnotherConcreteProduct implements ProductInterface
{
public function getName()
{
return 'AnotherConcreteProduct';
}
}
class ComplexProductFactory
{
public function factory($type)
{
switch ($type)
{
case 'Concrete':
$product = new ConcreteProduct();
break;
case 'AnotherConcrete':
$product = new AnotherConcreteProduct();
break;
default:
throw new Exception('Invalid type');
}
return $product;
}
}
class SimpleProductFactory
{
public function factory($type)
{
$className = $type.'Product';
if (!class_exists($className)) {
throw new Exception('Class '.$className.' not found');
}
return new $className;
}
}
// Using the ComplexProductFactory
$productFactory = new ComplexProductFactory();
$product = $productFactory->factory('Concrete');
echo $product->getName();
// Using the SimpleProductFactory
$simpleProductFactory = new SimpleProductFactory();
$product = $simpleProductFactory->factory('AnotherConcrete');
echo $product->getName();