for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* BB's Zend Framework 2 Components
*
* UI Components
* @package [MyApplication]
* @subpackage BB's Zend Framework 2 Components
* @subpackage UI Components
* @author Björn Bartels <[email protected]>
* @link https://gitlab.bjoernbartels.earth/groups/zf2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @copyright copyright (c) 2016 Björn Bartels <[email protected]>
*/
namespace UIComponents\View\Helper\Utilities;
* render nothing
class Element extends \UIComponents\View\Helper\AbstractHelper
{
* View helper entry point:
* Retrieves helper and optionally sets container to operate on
* @param AbstractContainer $container [optional] container to operate on
* @return self
public function __invoke($container = null)
if (null !== $container) {
$this->setContainer($container);
}
return ($this);
* @return string
public function render($container = null)
$html = '';
return $html;