mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-22 14:30:32 +02:00
18 lines
238 B
PHP
18 lines
238 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\AbstractFactory;
|
|
|
|
abstract class Text implements Media
|
|
{
|
|
/**
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $_text;
|
|
|
|
public function __construct($text)
|
|
{
|
|
$this->_text = $text;
|
|
}
|
|
}
|