mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-17 05:11:18 +02:00
17 lines
227 B
PHP
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;
|
|
}
|
|
}
|