mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-21 22:09:43 +02:00
15 lines
218 B
PHP
15 lines
218 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Decorator;
|
|
|
|
class RenderInJson extends Decorator
|
|
{
|
|
|
|
public function renderData()
|
|
{
|
|
$output = $this->_wrapped->renderData();
|
|
return json_encode($output);
|
|
}
|
|
|
|
}
|