This commit is contained in:
Ivan Shalganov 2013-01-25 19:18:09 +04:00
parent 4f42efbb9a
commit 337913a703
4 changed files with 3 additions and 7 deletions

View File

@ -1,6 +1,9 @@
<?php
use Aspect\Template;
/**
* Templater
*/
class Aspect {
const INLINE_COMPILER = 1;

View File

@ -2,8 +2,6 @@
namespace Aspect;
/**
* Class blackhole
* @author Ivan Shalganov <bzick@megagroup.ru>
* @copyright MegaGroup.ru
*/
class BlackHole implements \ArrayAccess, \Countable, \Iterator {

View File

@ -4,8 +4,6 @@ use Aspect;
/**
* Primitive template
* @author Ivan Shalganov <bzick@megagroup.ru>
* @copyright MegaGroup.ru
*/
class Render extends \ArrayObject {
/**

View File

@ -5,9 +5,6 @@ use Aspect;
/**
* Aspect template compiler
*
* @author Ivan Shalganov <bzick@megagroup.ru>
* @copyright MegaGroup.ru
*/
class Template extends Render {