Completed
Pull Request — master (#145)
by Paul
03:21
created
src/App.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
22 22
 use Symfony\Component\Routing\Exception\ResourceNotFoundException;
23 23
 use PPI\Framework\Http\Request as HttpRequest;
24
-use PPI\Framework\Http\Response as HttpResponse;
25 24
 
26 25
 /**
27 26
  * The PPI App bootstrap class.
Please login to merge, or discard this patch.
src/MicroApp.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,8 @@
 block discarded – undo
12 12
 
13 13
 use PPI\Framework\App as BaseApp;
14 14
 use Symfony\Component\Routing\Matcher\UrlMatcher as UrlMatcher;
15
-use Symfony\Component\Routing\RequestContext;
16 15
 use Symfony\Component\Routing\Route as Route;
17 16
 use Symfony\Component\Routing\RouteCollection;
18
-use Symfony\Component\Routing\Router;
19 17
 
20 18
 /**
21 19
  * The PPI MicroApp bootstrap class.
Please login to merge, or discard this patch.
src/Module/Listener/DefaultListenerAggregate.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 use Zend\ModuleManager\Listener\ModuleResolverListener;
21 21
 use Zend\ModuleManager\ModuleEvent;
22 22
 use Zend\Stdlib\ArrayUtils;
23
-use Aura\Router\Router as AuraRouter;
24 23
 
25 24
 /**
26 25
  * DefaultListenerAggregate class.
Please login to merge, or discard this patch.
src/Router/Loader/LaravelRoutesLoader.php 1 patch
Unused Use Statements   -7 removed lines patch added patch discarded remove patch
@@ -9,13 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace PPI\Framework\Router\Loader;
11 11
 
12
-use Illuminate\Http\Request;
13
-use Illuminate\Routing\Route;
14
-use Illuminate\Routing\Router;
15
-use Illuminate\Events\Dispatcher;
16
-use Illuminate\Container\Container;
17
-use Symfony\Component\HttpFoundation\Response;
18
-
19 12
 use Illuminate\Routing\Router as LaravelRouter;
20 13
 
21 14
 /**
Please login to merge, or discard this patch.
src/ServiceManager/Config/TemplatingConfig.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 use PPI\Framework\View\TemplateLocator;
23 23
 use PPI\Framework\View\TemplateNameParser;
24 24
 // Mustache
25
-use Symfony\Bundle\FrameworkBundle\Templating\Loader\FilesystemLoader;
26 25
 use Symfony\Component\Templating\Helper\AssetsHelper;
27 26
 // Twig
28 27
 
Please login to merge, or discard this patch.
src/ServiceManager/Factory/RouterFactory.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -14,16 +14,13 @@
 block discarded – undo
14 14
 use PPI\Framework\Router\ChainRouter;
15 15
 use Zend\ServiceManager\FactoryInterface;
16 16
 use Zend\ServiceManager\ServiceLocatorInterface;
17
-
18 17
 use PPI\Framework\Router\Router as SymfonyRouter;
19 18
 use PPI\Framework\Router\Wrapper\SymfonyRouterWrapper;
20 19
 use Symfony\Component\Routing\RouteCollection as SymfonyRouteCollection;
21
-
22 20
 use Illuminate\Http\Request as LaravelRequest;
23 21
 use Illuminate\Routing\Router as LaravelRouter;
24 22
 use Illuminate\Routing\UrlGenerator as LaravelUrlGenerator;
25 23
 use PPI\LaravelRouting\Wrapper\LaravelRouterWrapper;
26
-
27 24
 use Aura\Router\Router as AuraRouter;
28 25
 use PPI\Framework\Router\Wrapper\AuraRouterWrapper;
29 26
 
Please login to merge, or discard this patch.
src/ServiceManager/Factory/RouterListenerFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace PPI\Framework\ServiceManager\Factory;
12 12
 
13 13
 use PPI\Framework\Router\RouterListener;
14
-use Symfony\Component\Routing\RequestContext;
15 14
 use Zend\ServiceManager\FactoryInterface;
16 15
 use Zend\ServiceManager\ServiceLocatorInterface;
17 16
 
Please login to merge, or discard this patch.
src/Module/AbstractModule.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -16,16 +16,12 @@
 block discarded – undo
16 16
 use PPI\LaravelRouting\LaravelRouter;
17 17
 use PPI\FastRoute\Wrapper\FastRouteWrapper;
18 18
 use PPI\Framework\Router\Loader\YamlFileLoader;
19
-
20 19
 use Symfony\Component\Config\FileLocator;
21 20
 use Symfony\Component\Finder\Finder;
22
-
23 21
 use Zend\ModuleManager\Feature\ConfigProviderInterface;
24 22
 use Zend\Stdlib\ArrayUtils;
25
-
26 23
 use Aura\Router\Router as AuraRouter;
27 24
 use Aura\Router\RouterFactory as AuraRouterFactory;
28
-
29 25
 use Illuminate\Events\Dispatcher;
30 26
 
31 27
 /**
Please login to merge, or discard this patch.
src/ServiceManager/Factory/MicroRouterFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace PPI\Framework\ServiceManager\Factory;
12 12
 
13 13
 use PPI\Framework\Router\RouterListener;
14
-use Symfony\Component\Routing\RequestContext;
15 14
 use Zend\ServiceManager\FactoryInterface;
16 15
 use Zend\ServiceManager\ServiceLocatorInterface;
17 16
 
Please login to merge, or discard this patch.