21 lines
394 B
PHP
21 lines
394 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: k
|
|
* Date: 28.02.2019
|
|
* Time: 19:06
|
|
*/
|
|
|
|
namespace App\Decorators;
|
|
|
|
use App\Decorators\Interfaces\TextConverterDecoratorInterface;
|
|
|
|
abstract class TextConverterDecorator implements TextConverterDecoratorInterface
|
|
{
|
|
protected $text;
|
|
|
|
public function __construct(TextConverterDecoratorInterface $text)
|
|
{
|
|
$this->text = $text;
|
|
}
|
|
} |