Files
DesignPatternsPHP/Creational/AbstractFactory/Text.php
2016-09-22 09:18:20 +02:00

20 lines
300 B
PHP

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