Completed
Push — master ( 4ff2ad...4ba911 )
by Franck
03:40
created
src/php/Apix/Console/Main.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/php/Apix/Entity.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/php/Apix/Entity/EntityClass.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/php/Apix/Entity/EntityClosure.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/php/Apix/HttpRequest.php 1 patch
Unused Use Statements   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,7 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/php/Apix/Main.php 1 patch
Unused Use Statements   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,13 +12,13 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/php/Apix/Output/Html.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/php/Apix/Plugin/Auth.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/php/Apix/Plugin/Cors.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,8 @@
 block discarded – undo
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
Please login to merge, or discard this patch.