blob: 848661155e5ae91b254a09f4a36a34b81597c05d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
// Avoid complaints about missing namespace and invalid class name
// @codingStandardsIgnoreStart
use Icinga\Module\Director\PlainObjectRenderer;
class Zend_View_Helper_RenderPlainObject extends Zend_View_Helper_Abstract
// @codingStandardsIgnoreEnd
{
public function renderPlainObject($object)
{
return PlainObjectRenderer::render($object);
}
}
|