Completed
Pull Request — master (#37)
by San
10:18
created
sources/lib/PropertyInfo/Extractor/PommExtractor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,4 +12,4 @@
 block discarded – undo
12 12
 
13 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
-class_alias(__NAMESPACE__ . '\TypeExtractor', __NAMESPACE__ . '\PommExtractor');
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.
sources/lib/Controller/PommProfilerController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,8 +112,7 @@
 block discarded – undo
112 112
 
113 113
         if ($format === 'json') {
114 114
             $template = '@Pomm/Profiler/graph.html.twig';
115
-        }
116
-        else {
115
+        } else {
117 116
             $template = '@Pomm/Profiler/explain.html.twig';
118 117
         }
119 118
 
Please login to merge, or discard this patch.