@@ -32,10 +32,10 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | namespace Fwk\Core\Action; |
| 34 | 34 | |
| 35 | -use Fwk\Core\ServicesAware, |
|
| 36 | - Fwk\Core\ContextAware, |
|
| 37 | - Fwk\Core\Context, |
|
| 38 | - Fwk\Di\Container; |
|
| 35 | +use Fwk\Core\ServicesAware; |
|
| 36 | +use Fwk\Core\ContextAware; |
|
| 37 | +use Fwk\Core\Context; |
|
| 38 | +use Fwk\Di\Container; |
|
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * Simple utility/shortcut base class for Actions. |
@@ -33,9 +33,9 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | namespace Fwk\Core\Components; |
| 35 | 35 | |
| 36 | -use Fwk\Core\Events\BootEvent; |
|
| 37 | 36 | use Fwk\Di\Container; |
| 38 | -use Fwk\Xml\Path, Fwk\Xml\Map; |
|
| 37 | +use Fwk\Xml\Path; |
|
| 38 | +use Fwk\Xml\Map; |
|
| 39 | 39 | use Fwk\Core\Components\Descriptor\DescriptorLoadedEvent; |
| 40 | 40 | use Fwk\Core\ContextAware; |
| 41 | 41 | use Fwk\Core\ServicesAware; |
@@ -35,7 +35,6 @@ |
||
| 35 | 35 | |
| 36 | 36 | use Fwk\Core\Components\ResultType\ResultType; |
| 37 | 37 | use Symfony\Component\HttpFoundation\JsonResponse; |
| 38 | -use Fwk\Core\Accessor; |
|
| 39 | 38 | use Fwk\Core\Context; |
| 40 | 39 | |
| 41 | 40 | /** |
@@ -33,8 +33,8 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | namespace Fwk\Core\Components\ResultType; |
| 35 | 35 | |
| 36 | -use Fwk\Core\Components\ResultType\ResultType, |
|
| 37 | - Symfony\Component\HttpFoundation\Response; |
|
| 36 | +use Fwk\Core\Components\ResultType\ResultType; |
|
| 37 | +use Symfony\Component\HttpFoundation\Response; |
|
| 38 | 38 | |
| 39 | 39 | class PhpTemplateResultType implements ResultType |
| 40 | 40 | { |
@@ -6,8 +6,9 @@ |
||
| 6 | 6 | use Fwk\Core\Components\Descriptor\DescriptorLoadedEvent; |
| 7 | 7 | use Fwk\Core\Events\BootEvent; |
| 8 | 8 | use Symfony\Component\HttpFoundation\Response; |
| 9 | -use Fwk\Xml\Map, Fwk\Xml\Path; |
|
| 10 | -use Fwk\Di\ClassDefinition, Fwk\Di\Container; |
|
| 9 | +use Fwk\Xml\Map; |
|
| 10 | +use Fwk\Xml\Path; |
|
| 11 | +use Fwk\Di\ClassDefinition; |
|
| 11 | 12 | |
| 12 | 13 | class ResultTypeListener |
| 13 | 14 | { |
@@ -3,7 +3,8 @@ |
||
| 3 | 3 | |
| 4 | 4 | use Fwk\Core\Context; |
| 5 | 5 | use Fwk\Core\Application; |
| 6 | -use Fwk\Core\ServicesAware, Fwk\Core\ContextAware; |
|
| 6 | +use Fwk\Core\ServicesAware; |
|
| 7 | +use Fwk\Core\ContextAware; |
|
| 7 | 8 | |
| 8 | 9 | class ResultTypeService |
| 9 | 10 | { |
@@ -37,7 +37,8 @@ |
||
| 37 | 37 | use Fwk\Core\Events\DispatchEvent; |
| 38 | 38 | use Fwk\Core\Components\Descriptor\DescriptorLoadedEvent; |
| 39 | 39 | use Fwk\Core\Components\Descriptor\Descriptor; |
| 40 | -use Fwk\Xml\Map, Fwk\Xml\Path; |
|
| 40 | +use Fwk\Xml\Map; |
|
| 41 | +use Fwk\Xml\Path; |
|
| 41 | 42 | |
| 42 | 43 | /** |
| 43 | 44 | * This Listener allows URLs to be customized the mod_rewrite way |
@@ -32,8 +32,8 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | namespace Fwk\Core; |
| 34 | 34 | |
| 35 | -use Symfony\Component\HttpFoundation\Request, |
|
| 36 | - Symfony\Component\HttpFoundation\Response; |
|
| 35 | +use Symfony\Component\HttpFoundation\Request; |
|
| 36 | +use Symfony\Component\HttpFoundation\Response; |
|
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | 39 | * Action Context |