Completed
Push — master ( e41e91...2b4213 )
by Aleh
01:47 queued 01:39
created
src/Padawan/Parser/UseParser.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 class UseParser {
11 11
     /** @var Uses */
12 12
     private $uses;
13
-    public function parse(Use_ $node){
14
-        foreach($node->uses AS $use){
13
+    public function parse(Use_ $node) {
14
+        foreach ($node->uses AS $use) {
15 15
             $fqcn = $this->parseFQCN($use->name->toString());
16 16
             $this->uses->add($fqcn, $use->alias);
17 17
         }
@@ -21,44 +21,44 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @param string $type
23 23
      */
24
-    public function parseType($type){
24
+    public function parseType($type) {
25 25
         $pureFQCN = $this->parseFQCN($type);
26
-        if($pureFQCN->isScalar()){
26
+        if ($pureFQCN->isScalar()) {
27 27
             return $pureFQCN;
28 28
         }
29
-        if(strpos($type, '\\') === 0){
29
+        if (strpos($type, '\\') === 0) {
30 30
             return $pureFQCN;
31 31
         }
32 32
         $fqcn = $this->uses->find($type);
33
-        if(!empty($fqcn)){
33
+        if (!empty($fqcn)) {
34 34
             return $fqcn;
35 35
         }
36 36
         return $this->createFQCN($pureFQCN);
37 37
     }
38
-    public function getFQCN(Name $node = null){
39
-        if($node === null) {
38
+    public function getFQCN(Name $node = null) {
39
+        if ($node === null) {
40 40
             return $node;
41 41
         }
42
-        if($node->isFullyQualified()){
42
+        if ($node->isFullyQualified()) {
43 43
             return $this->parseFQCN($node->toString());
44 44
         }
45 45
         $fqcn = $this->uses->find($node->getFirst());
46
-        if($fqcn){
46
+        if ($fqcn) {
47 47
             return $fqcn;
48 48
         }
49 49
         return $this->createFQCN($node->toString());
50 50
     }
51
-    public function parseFQCN($fqcn){
51
+    public function parseFQCN($fqcn) {
52 52
         $fqcn = trim($fqcn, '\\');
53
-        if(empty($fqcn)){
53
+        if (empty($fqcn)) {
54 54
             return new FQCN('');
55 55
         }
56 56
         $parts = explode('\\', $fqcn);
57 57
         $name = array_pop($parts);
58 58
         $regex = '/(\w+)(\\[\\])?/';
59 59
         preg_match($regex, $name, $matches);
60
-        if(count($matches) === 0){
61
-            throw new \Exception("Could not parse FQCN for empty class name: " . $fqcn);
60
+        if (count($matches) === 0) {
61
+            throw new \Exception("Could not parse FQCN for empty class name: ".$fqcn);
62 62
         }
63 63
         $name = $matches[1];
64 64
         $isArray = count($matches) === 3 && $matches[2] = '[]';
Please login to merge, or discard this patch.
src/Padawan/Plugin/Loader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
                 explode("-", $part)
30 30
             ));
31 31
         }, $parts));
32
-        $className .= "\\" . $this->pluginClassName;
32
+        $className .= "\\".$this->pluginClassName;
33 33
         try {
34 34
             /** @var \Padawan\Plugin\PluginInterface */
35 35
             $plugin = $this->container->get($className);
Please login to merge, or discard this patch.
src/Padawan/Domain/Completer/StaticCompleter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Padawan/Domain/Completer/ObjectCompleter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Padawan/Framework/Application/Socket/SocketOutput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     public function writeln($message, $options = 0)
25 25
     {
26
-        return $this->client->write($message . "\n");
26
+        return $this->client->write($message."\n");
27 27
     }
28 28
 
29 29
     public function disconnect()
Please login to merge, or discard this patch.
src/Padawan/Framework/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Padawan/Domain/Completer/CompleterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/Padawan/Framework/Complete/CompleteEngine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Padawan/Domain/Completion/Token.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -162,6 +162,10 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.