2013-09-03 14:42:15 +02:00

23 lines
303 B
PHP

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