@@ -26,9 +26,9 @@ |
||
26 | 26 | namespace Koch\DI\Engine; |
27 | 27 | |
28 | 28 | use Koch\DI\AbstractLifecycle; |
29 | +use Koch\DI\Exception\CannotFindImplementation; |
|
29 | 30 | use Koch\DI\Lifecycle\Factory; |
30 | 31 | use Koch\DI\Lifecycle\Value; |
31 | -use Koch\DI\Exception\CannotFindImplementation; |
|
32 | 32 | |
33 | 33 | class Context |
34 | 34 | { |
@@ -24,8 +24,8 @@ |
||
24 | 24 | |
25 | 25 | namespace Koch\Exception; |
26 | 26 | |
27 | -use Koch\Exception\Renderer\YellowScreenOfDeath; |
|
28 | 27 | use Koch\Exception\Renderer\SmartyTemplateError; |
28 | +use Koch\Exception\Renderer\YellowScreenOfDeath; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Koch Framework - Class for Errorhandling |
@@ -24,10 +24,10 @@ |
||
24 | 24 | |
25 | 25 | namespace Koch\Filter\Filters; |
26 | 26 | |
27 | +use Koch\Config\Config; |
|
27 | 28 | use Koch\Filter\FilterInterface; |
28 | 29 | use Koch\Http\HttpRequestInterface; |
29 | 30 | use Koch\Http\HttpResponseInterface; |
30 | -use Koch\Config\Config; |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Koch Framework - Filter for Language Selection via URL. |
@@ -24,10 +24,10 @@ |
||
24 | 24 | |
25 | 25 | namespace Koch\Filter\Filters; |
26 | 26 | |
27 | +use Koch\Config; |
|
27 | 28 | use Koch\Filter\FilterInterface; |
28 | 29 | use Koch\Http\HttpRequestInterface; |
29 | 30 | use Koch\Http\HttpResponseInterface; |
30 | -use Koch\Config; |
|
31 | 31 | use Koch\View\Renderer\Smarty; |
32 | 32 | |
33 | 33 | /** |
@@ -24,10 +24,10 @@ |
||
24 | 24 | |
25 | 25 | namespace Koch\Filter\Filters; |
26 | 26 | |
27 | +use Koch\Exception\Exception; |
|
27 | 28 | use Koch\Filter\FilterInterface; |
28 | 29 | use Koch\Http\HttpRequestInterface; |
29 | 30 | use Koch\Http\HttpResponseInterface; |
30 | -use Koch\Exception\Exception; |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Koch Framework - Filter performing Startup Checks. |
@@ -24,10 +24,10 @@ |
||
24 | 24 | |
25 | 25 | namespace Koch\Filter\Filters; |
26 | 26 | |
27 | +use Koch\Config\Config; |
|
27 | 28 | use Koch\Filter\FilterInterface; |
28 | 29 | use Koch\Http\HttpRequestInterface; |
29 | 30 | use Koch\Http\HttpResponseInterface; |
30 | -use Koch\Config\Config; |
|
31 | 31 | use Koch\Validation\InputFilter; |
32 | 32 | |
33 | 33 | /** |
@@ -393,8 +393,8 @@ |
||
393 | 393 | /** |
394 | 394 | * Setter method for Attribute |
395 | 395 | * |
396 | - * @param array $attribute attribute name |
|
397 | - * @param array $value value |
|
396 | + * @param string $attribute attribute name |
|
397 | + * @param null|boolean $value value |
|
398 | 398 | */ |
399 | 399 | public function setAttribute($attribute, $value) |
400 | 400 | { |
@@ -24,9 +24,9 @@ |
||
24 | 24 | |
25 | 25 | namespace Koch\Mvc; |
26 | 26 | |
27 | +use Koch\Filter\FilterInterface; |
|
27 | 28 | use Koch\Http\HttpRequestInterface; |
28 | 29 | use Koch\Http\HttpResponseInterface; |
29 | -use Koch\Filter\FilterInterface; |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Interface for FrontController |
@@ -25,8 +25,8 @@ |
||
25 | 25 | |
26 | 26 | namespace Koch\Pagination\Adapter; |
27 | 27 | |
28 | -use Koch\Pagination\AdapterInterface; |
|
29 | 28 | use Doctrine\ORM\Tools\Pagination\Paginator; |
29 | +use Koch\Pagination\AdapterInterface; |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Koch Framework - Pagination Adapter for Doctrine Models. |