@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | return []; |
| 28 | 28 | } |
| 29 | 29 | $index = $project->getIndex(); |
| 30 | - $this->logger->debug('Creating completion for ' . $fqcn->toString()); |
|
| 30 | + $this->logger->debug('Creating completion for '.$fqcn->toString()); |
|
| 31 | 31 | $class = $index->findClassByFQCN($fqcn); |
| 32 | 32 | if (empty($class)) { |
| 33 | 33 | $class = $index->findInterfaceByFQCN($fqcn); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | { |
| 80 | 80 | $type = $prop->type instanceof FQCN ? $prop->type->toString() : 'mixed'; |
| 81 | 81 | return new Entry( |
| 82 | - '$' . $prop->name, |
|
| 82 | + '$'.$prop->name, |
|
| 83 | 83 | $type |
| 84 | 84 | ); |
| 85 | 85 | } |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | return []; |
| 28 | 28 | } |
| 29 | 29 | $index = $project->getIndex(); |
| 30 | - $this->logger->debug('Creating completion for ' . $fqcn->toString()); |
|
| 30 | + $this->logger->debug('Creating completion for '.$fqcn->toString()); |
|
| 31 | 31 | $class = $index->findClassByFQCN($fqcn); |
| 32 | 32 | if (empty($class)) { |
| 33 | 33 | $class = $index->findInterfaceByFQCN($fqcn); |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | { |
| 33 | 33 | $builder = new ContainerBuilder; |
| 34 | 34 | $builder->setDefinitionCache(new \Doctrine\Common\Cache\ArrayCache); |
| 35 | - $builder->addDefinitions(__DIR__ . '/DI/config.php'); |
|
| 35 | + $builder->addDefinitions(__DIR__.'/DI/config.php'); |
|
| 36 | 36 | $this->container = $builder->build(); |
| 37 | 37 | } |
| 38 | 38 | |