| Current Path : /var/www/clients/client3/web2/web/vendor/laminas/laminas-view/src/Helper/ |
| Current File : /var/www/clients/client3/web2/web/vendor/laminas/laminas-view/src/Helper/AbstractHelper.php |
<?php
/**
* @see https://github.com/laminas/laminas-view for the canonical source repository
* @copyright https://github.com/laminas/laminas-view/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-view/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\View\Helper;
use Laminas\View\Renderer\RendererInterface as Renderer;
abstract class AbstractHelper implements HelperInterface
{
/**
* View object instance
*
* @var Renderer
*/
protected $view = null;
/**
* Set the View object
*
* @param Renderer $view
* @return AbstractHelper
*/
public function setView(Renderer $view)
{
$this->view = $view;
return $this;
}
/**
* Get the view object
*
* @return null|Renderer
*/
public function getView()
{
return $this->view;
}
}