forked from DesignPatternsPHP/DesignPatternsPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractFactory.php
More file actions
42 lines (39 loc) · 1.13 KB
/
Copy pathAbstractFactory.php
File metadata and controls
42 lines (39 loc) · 1.13 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
<?php
namespace DesignPatterns;
/**
* Abstract Factory pattern
*
* Purpose:
* to create series of related or dependant objects without specifying their concrete classes,
* usually the created classes all implement the same interface
*
* Examples:
* - A Factory to create media in a CMS: classes would be text, audio, video, picture
* - SQL Factory (types are all strings with SQL, but they vary in detail (tables, fields, etc.))
* - Zend Framework: Zend_Form::createElement() creates form elements, but you could also call new T
* TextElement() instead
* - an abstract factory to create various exceptions (e.g. Doctrine2 uses this method)
*
*/
abstract class AbstractFactory
{
/**
* @static
* @param string $content
* @return AbstractFactory\Text
*/
public static function createText($content)
{
return new AbstractFactory\Text($content);
}
/**
* @static
* @param string $path
* @param string $name
* @return AbstractFactory\Picture
*/
public static function createPicture($path, $name = '')
{
return new AbstractFactory\Picture($path, $name);
}
}