Completed
Pull Request — master (#53)
by
unknown
02:55
created
src/Padawan/Framework/Generator/IndexGenerator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 $end = microtime(1) - $start;
70 70
 
71 71
                 $this->getLogger()->debug("Indexing: [$end]s");
72
-                $this->getLogger()->debug("Memory: " . memory_get_usage());
72
+                $this->getLogger()->debug("Memory: ".memory_get_usage());
73 73
                 $globalTime += $end;
74 74
                 ++$done;
75 75
                 $process = floor($done / $all * 100);
@@ -130,13 +130,13 @@  discard block
 block discarded – undo
130 130
         $this->getLogger()->debug(sprintf("Processing %s interfaces", count($scope->getInterfaces())));
131 131
         $this->getLogger()->debug(sprintf("Processing %s functions", count($scope->getFunctions())));
132 132
         foreach ($scope->getClasses() as $classData) {
133
-            $this->getLogger()->debug('Processing node ' . $classData->fqcn->toString());
133
+            $this->getLogger()->debug('Processing node '.$classData->fqcn->toString());
134 134
         }
135 135
         foreach ($scope->getInterfaces() as $interfaceData) {
136
-            $this->getLogger()->debug('Processing node ' . $interfaceData->fqcn->toString());
136
+            $this->getLogger()->debug('Processing node '.$interfaceData->fqcn->toString());
137 137
         }
138 138
         foreach ($scope->getFunctions() as $functionData) {
139
-            $this->getLogger()->debug('Processing node ' . $functionData->name);
139
+            $this->getLogger()->debug('Processing node '.$functionData->name);
140 140
         }
141 141
         $file->updateScope($scope, $hash);
142 142
         $index->addFile($file);
Please login to merge, or discard this patch.