@@ -123,7 +123,7 @@ |
||
| 123 | 123 | if (strpos($badLine, '<?php') === false |
| 124 | 124 | || strpos($badLine, '<?') === false |
| 125 | 125 | ) { |
| 126 | - $badLine = '<?php ' . $badLine; |
|
| 126 | + $badLine = '<?php '.$badLine; |
|
| 127 | 127 | } |
| 128 | 128 | $badLine = str_replace(['elseif', 'else', 'catch'], '', $badLine); |
| 129 | 129 | if ($wrapFunctionCall && $badLine[strlen($badLine) - 1] === '(') { |
@@ -28,6 +28,10 @@ discard block |
||
| 28 | 28 | $this->logger = $logger; |
| 29 | 29 | $this->useParser = $useParser; |
| 30 | 30 | } |
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * @param string $badLine |
|
| 34 | + */ |
|
| 31 | 35 | public function getContext($badLine, Index $index, Scope $scope = null) |
| 32 | 36 | { |
| 33 | 37 | if (empty($scope)) { |
@@ -118,6 +122,9 @@ discard block |
||
| 118 | 122 | return $token; |
| 119 | 123 | } |
| 120 | 124 | |
| 125 | + /** |
|
| 126 | + * @return string |
|
| 127 | + */ |
|
| 121 | 128 | protected function prepareLine($badLine, $wrapFunctionCall = true) |
| 122 | 129 | { |
| 123 | 130 | if (strpos($badLine, '<?php') === false |
@@ -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); |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | use Symfony\Component\Console\Application as BaseApplication; |
| 8 | 8 | |
| 9 | 9 | define("PADAWAN_VERSION", "0.3"); |
| 10 | -define("STUBS_DIR", dirname(dirname(dirname(__DIR__))) . '/stubs'); |
|
| 10 | +define("STUBS_DIR", dirname(dirname(dirname(__DIR__))).'/stubs'); |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * Class Application |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | $builder = new ContainerBuilder; |
| 35 | 35 | $builder->setDefinitionCache(new \Doctrine\Common\Cache\ArrayCache); |
| 36 | - $builder->addDefinitions(__DIR__ . '/DI/config.php'); |
|
| 36 | + $builder->addDefinitions(__DIR__.'/DI/config.php'); |
|
| 37 | 37 | $this->container = $builder->build(); |
| 38 | 38 | } |
| 39 | 39 | |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | public function getCompleters(Project $project, Context $context) |
| 40 | 40 | { |
| 41 | 41 | $completers = []; |
| 42 | - foreach($this->completers as $completer) { |
|
| 42 | + foreach ($this->completers as $completer) { |
|
| 43 | 43 | if ($completer->canHandle($project, $context)) { |
| 44 | 44 | $completers[] = $completer; |
| 45 | 45 | } |
@@ -83,7 +83,7 @@ |
||
| 83 | 83 | $context = $this->contextResolver->getContext($badLine, $project->getIndex(), $scope); |
| 84 | 84 | $completers = $this->completerFactory->getCompleters($project, $context); |
| 85 | 85 | $entries = []; |
| 86 | - foreach($completers as $completer) { |
|
| 86 | + foreach ($completers as $completer) { |
|
| 87 | 87 | $entries = array_merge($entries, $completer->getEntries($project, $context)); |
| 88 | 88 | } |
| 89 | 89 | return $entries; |
@@ -162,6 +162,10 @@ |
||
| 162 | 162 | { |
| 163 | 163 | $this->type = $type; |
| 164 | 164 | } |
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * @param integer $type |
|
| 168 | + */ |
|
| 165 | 169 | protected function addType($type) |
| 166 | 170 | { |
| 167 | 171 | $this->type |= $type; |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | $this->addType(self::T_UNKNOWN); |
| 59 | 59 | } |
| 60 | 60 | if (!$this->isReady()) { |
| 61 | - $this->symbol = $symbol . $this->symbol; |
|
| 61 | + $this->symbol = $symbol.$this->symbol; |
|
| 62 | 62 | } |
| 63 | 63 | } |
| 64 | 64 | |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | */ |
| 173 | 173 | protected function removeType($type) |
| 174 | 174 | { |
| 175 | - if((bool) ($this->type & $type)){ |
|
| 175 | + if ((bool) ($this->type & $type)) { |
|
| 176 | 176 | $this->type ^= $type; |
| 177 | 177 | } |
| 178 | 178 | } |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | - * @return FQCN |
|
| 35 | + * @return \Padawan\Domain\Project\FQCN |
|
| 36 | 36 | */ |
| 37 | 37 | public function getFQCN() |
| 38 | 38 | { |
@@ -22,6 +22,10 @@ |
||
| 22 | 22 | { |
| 23 | 23 | return $this->getParent()->getFQCN(); |
| 24 | 24 | } |
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * @return \Padawan\Domain\Project\Node\ClassData |
|
| 28 | + */ |
|
| 25 | 29 | public function getClass() |
| 26 | 30 | { |
| 27 | 31 | return $this->getParent()->getClass(); |