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

17 lines
227 B
PHP

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