@@ -69,7 +69,7 @@ discard block |
||
| 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 |
||
| 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); |