mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
12 lines
215 B
PHP
12 lines
215 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
class JsonRenderer extends RendererDecorator
|
|
{
|
|
public function renderData(): string
|
|
{
|
|
return json_encode($this->wrapped->renderData());
|
|
}
|
|
}
|