mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
18 lines
229 B
PHP
18 lines
229 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\AbstractFactory;
|
|
|
|
class Text implements Media
|
|
{
|
|
/**
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $_text;
|
|
|
|
public function __construct($text)
|
|
{
|
|
$this->_text = $text;
|
|
}
|
|
}
|