mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-22 16:54:13 +01:00
23 lines
323 B
PHP
23 lines
323 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\AbstractFactory;
|
|
|
|
/**
|
|
* Class Text.
|
|
*/
|
|
abstract class Text implements MediaInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $text;
|
|
|
|
/**
|
|
* @param string $text
|
|
*/
|
|
public function __construct($text)
|
|
{
|
|
$this->text = (string) $text;
|
|
}
|
|
}
|