1
0
mirror of https://github.com/DesignPatternsPHP/DesignPatternsPHP.git synced 2025-06-28 04:03:02 +02:00
Files
DesignPatternsPHP/AbstractFactory/Text.php
2011-08-23 09:20:40 +02:00

18 lines
229 B
PHP

<?php
namespace DesignPatterns\AbstractFactory;
class Text implements Media
{
/**
*
* @var string
*/
protected $_text;
public function __construct($text)
{
$this->_text = $text;
}
}