Files
DesignPatternsPHP/AbstractFactory/Text.php
2011-08-21 16:03:10 +02:00

25 lines
386 B
PHP

<?php
/**
* Created by JetBrains PhpStorm.
* User: dominik
* Date: 21.08.11
* Time: 15:42
* To change this template use File | Settings | File Templates.
*/
namespace DesignPatterns\AbstractFactory;
class Text implements Media
{
/**
*
* @var string
*/
protected $_text;
public function __construct($text)
{
$this->_text = $text;
}
}