Completed
Pull Request — master (#104)
by Mikael
04:17
created
sources/lib/Controller/PommProfilerController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
15 15
 use Symfony\Component\HttpKernel\Profiler\Profiler;
16 16
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
17
-
18 17
 use PommProject\Foundation\Pomm;
19 18
 
20 19
 /**
Please login to merge, or discard this patch.
sources/lib/DatabaseDataCollector.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,7 @@
 block discarded – undo
11 11
 namespace PommProject\PommBundle;
12 12
 
13 13
 use PommProject\Foundation\Exception\SqlException;
14
-use PommProject\Foundation\Listener\Listener;
15 14
 use PommProject\Foundation\Session\Session;
16
-
17 15
 use Symfony\Component\Stopwatch\Stopwatch;
18 16
 use Symfony\Component\HttpFoundation\Request;
19 17
 use Symfony\Component\HttpFoundation\Response;
Please login to merge, or discard this patch.
sources/lib/PropertyInfo/Extractor/PommExtractor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,6 +10,6 @@
 block discarded – undo
10 10
 
11 11
 namespace PommProject\PommBundle\PropertyInfo\Extractor;
12 12
 
13
-@trigger_error('The '.__NAMESPACE__.'\PommExtractor class is deprecated since version 2.3 and will be removed in 3.0. Use the '.__NAMESPACE__.'\TypeExtractor class instead.', E_USER_DEPRECATED);
13
+@trigger_error('The ' . __NAMESPACE__ . '\PommExtractor class is deprecated since version 2.3 and will be removed in 3.0. Use the ' . __NAMESPACE__ . '\TypeExtractor class instead.', E_USER_DEPRECATED);
14 14
 
15 15
 class_alias(__NAMESPACE__ . '\TypeExtractor', __NAMESPACE__ . '\PommExtractor');
Please login to merge, or discard this patch.
sources/lib/Configurator/DatabaseCollectorConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $callable = [$this->datacollector, 'execute'];
41 41
 
42 42
         foreach ($pomm->getSessionBuilders() as $name => $builder) {
43
-            $pomm->addPostConfiguration($name, function ($session) use ($callable) {
43
+            $pomm->addPostConfiguration($name, function($session) use ($callable) {
44 44
                 $session
45 45
                     ->getClientUsingPooler('listener', 'query')
46 46
                     ->attachAction($callable)
Please login to merge, or discard this patch.