mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
25 lines
525 B
PHP
25 lines
525 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
/**
|
|
* the Decorator MUST implement the RendererInterface contract, this is the key-feature
|
|
* of this design pattern. If not, this is no longer a Decorator but just a dumb
|
|
* wrapper.
|
|
*/
|
|
abstract class RendererDecorator
|
|
{
|
|
/**
|
|
* @var RenderableInterface
|
|
*/
|
|
protected $wrapped;
|
|
|
|
/**
|
|
* @param RenderableInterface $renderer
|
|
*/
|
|
public function __construct(RenderableInterface $renderer)
|
|
{
|
|
$this->wrapped = $renderer;
|
|
}
|
|
}
|