@@ -33,8 +33,6 @@ |
||
| 33 | 33 | namespace ntentan\honam\engines\php\helpers; |
| 34 | 34 | |
| 35 | 35 | use ntentan\honam\engines\php\Helper; |
| 36 | - |
|
| 37 | -use ntentan\honam\TemplateEngine; |
|
| 38 | 36 | use ntentan\utils\Input; |
| 39 | 37 | |
| 40 | 38 | class PaginationHelper extends Helper |
@@ -31,9 +31,6 @@ |
||
| 31 | 31 | |
| 32 | 32 | namespace ntentan\honam\engines\php\helpers\form; |
| 33 | 33 | |
| 34 | -use ntentan\honam\engines\php\helpers\formHelper; |
|
| 35 | -use ntentan\honam\TemplateEngine; |
|
| 36 | - |
|
| 37 | 34 | /** |
| 38 | 35 | * The form element class. An element can be anything from the form |
| 39 | 36 | * itself to the objects that are put in the form. Provides an |
@@ -27,11 +27,10 @@ |
||
| 27 | 27 | namespace ntentan\honam\engines; |
| 28 | 28 | |
| 29 | 29 | use Exception; |
| 30 | +use ntentan\honam\TemplateRenderer; |
|
| 30 | 31 | use ntentan\honam\engines\php\HelperVariable; |
| 31 | 32 | use ntentan\honam\engines\php\Janitor; |
| 32 | 33 | use ntentan\honam\engines\php\Variable; |
| 33 | -use ntentan\honam\TemplateFileResolver; |
|
| 34 | -use ntentan\honam\TemplateRenderer; |
|
| 35 | 34 | use ntentan\utils\StringStream; |
| 36 | 35 | |
| 37 | 36 | /** |
@@ -110,7 +110,7 @@ |
||
| 110 | 110 | * Load and cache an instance of the a template engine. |
| 111 | 111 | * |
| 112 | 112 | * @param $extension |
| 113 | - * @return mixed |
|
| 113 | + * @return AbstractEngine |
|
| 114 | 114 | * @throws exceptions\TemplateEngineNotFoundException |
| 115 | 115 | * @throws exceptions\FactoryException |
| 116 | 116 | */ |
@@ -29,7 +29,6 @@ |
||
| 29 | 29 | use ntentan\honam\engines\AbstractEngine; |
| 30 | 30 | use ntentan\honam\exceptions\TemplateEngineNotFoundException; |
| 31 | 31 | use ntentan\honam\exceptions\TemplateResolutionException; |
| 32 | -use ntentan\honam\factories\HelperVariable; |
|
| 33 | 32 | |
| 34 | 33 | /** |
| 35 | 34 | * The TemplateEngine class does the work of resolving templates, loading template files, |