@@ -12,9 +12,9 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix\Console; |
14 | 14 | |
15 | -use Apix\Console, |
|
16 | - Apix\Server, |
|
17 | - Apix\Input; |
|
15 | +use Apix\Console; |
|
16 | +use Apix\Server; |
|
17 | +use Apix\Input; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Main Console class. |
@@ -12,10 +12,10 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix; |
14 | 14 | |
15 | -use Apix\Listener, |
|
16 | - Apix\Config, |
|
17 | - Apix\Router, |
|
18 | - Apix\Entity\EntityInterface; |
|
15 | +use Apix\Listener; |
|
16 | +use Apix\Config; |
|
17 | +use Apix\Router; |
|
18 | +use Apix\Entity\EntityInterface; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Represents a resource entity. |
@@ -12,10 +12,10 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix\Entity; |
14 | 14 | |
15 | -use Apix\Entity, |
|
16 | - Apix\Entity\EntityInterface, |
|
17 | - Apix\Reflection, |
|
18 | - Apix\Router; |
|
15 | +use Apix\Entity; |
|
16 | +use Apix\Entity\EntityInterface; |
|
17 | +use Apix\Reflection; |
|
18 | +use Apix\Router; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Represents a class based entity resource. |
@@ -12,10 +12,10 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix\Entity; |
14 | 14 | |
15 | -use Apix\Entity, |
|
16 | - Apix\Entity\EntityInterface, |
|
17 | - Apix\Reflection, |
|
18 | - Apix\Router; |
|
15 | +use Apix\Entity; |
|
16 | +use Apix\Entity\EntityInterface; |
|
17 | +use Apix\Reflection; |
|
18 | +use Apix\Router; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Represents a resource. |
@@ -12,10 +12,7 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix; |
14 | 14 | |
15 | -use Apix\Request, |
|
16 | - Apix\Input\InputInterface, |
|
17 | - Apix\Input\Xml, |
|
18 | - Apix\Input\Json; |
|
15 | +use Apix\Request; |
|
19 | 16 | |
20 | 17 | class HttpRequest extends Request |
21 | 18 | { |
@@ -12,13 +12,13 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix; |
14 | 14 | |
15 | -use Apix\Listener, |
|
16 | - Apix\Config, |
|
17 | - Apix\Resources, |
|
18 | - Apix\Request, |
|
19 | - Apix\HttpRequest, |
|
20 | - Apix\Response, |
|
21 | - Apix\Service; |
|
15 | +use Apix\Listener; |
|
16 | +use Apix\Config; |
|
17 | +use Apix\Resources; |
|
18 | +use Apix\Request; |
|
19 | +use Apix\HttpRequest; |
|
20 | +use Apix\Response; |
|
21 | +use Apix\Service; |
|
22 | 22 | |
23 | 23 | // Apix\Router |
24 | 24 |
@@ -12,11 +12,6 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix\Output; |
14 | 14 | |
15 | -use Apix\View\Template, |
|
16 | - Apix\View\View, |
|
17 | - Apix\View\ViewModel, |
|
18 | - Apix\Model; |
|
19 | - |
|
20 | 15 | class Html extends AbstractOutput |
21 | 16 | { |
22 | 17 |
@@ -12,8 +12,8 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix\Plugin; |
14 | 14 | |
15 | -use Apix\Service, |
|
16 | - Apix\Exception; |
|
15 | +use Apix\Service; |
|
16 | +use Apix\Exception; |
|
17 | 17 | |
18 | 18 | class Auth extends PluginAbstractEntity |
19 | 19 | { |
@@ -12,9 +12,8 @@ |
||
12 | 12 | |
13 | 13 | namespace Apix\Plugin; |
14 | 14 | |
15 | -use Apix\Service, |
|
16 | - Apix\HttpRequest, |
|
17 | - Apix\Exception; |
|
15 | +use Apix\Service; |
|
16 | +use Apix\HttpRequest; |
|
18 | 17 | |
19 | 18 | /** |
20 | 19 | * Apix plugin providing Cross-Origin Resource Sharing |