Files
majestic/View/Helpers/ViewHelper.php

22 lines
379 B
PHP
Raw Normal View History

2014-06-02 18:58:49 +04:00
<?php namespace Majestic\View\Helpers;
/**
* @copyright NetMonsters <team@netmonsters.ru>
* @link http://netmonsters.ru
* @package Majestic
* @subpackage View
* @since 2010-03-09
*/
abstract class ViewHelper
{
2012-11-21 15:43:20 +04:00
/**
2014-06-02 18:58:49 +04:00
* @var \Majestic\View\PHPView
*/
protected $view = null;
2012-11-21 15:43:20 +04:00
public function __construct($view)
{
$this->view = $view;
}
}