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