Completed
Push — master ( 4fa5e5...5bda77 )
by Aleh
06:14 queued 02:58
created
src/Padawan/Domain/Core/FQCN.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,7 @@
 block discarded – undo
7 7
     public function __get($key) {
8 8
         if ($key === "className") {
9 9
             return $this->getClassName();
10
-        }
11
-        elseif ($key === "namespace") {
10
+        } elseif ($key === "namespace") {
12 11
             return $this->getNamespace();
13 12
         }
14 13
     }
Please login to merge, or discard this patch.
src/Padawan/Domain/Core/FQN.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,15 +8,12 @@
 block discarded – undo
8 8
         if ($namespace) {
9 9
             if ($namespace instanceof FQN) {
10 10
                 $this->parts = $namespace->getParts();
11
-            }
12
-            elseif (!is_array($namespace)) {
11
+            } elseif (!is_array($namespace)) {
13 12
                 $this->parts = explode("\\", $namespace);
14
-            }
15
-            else {
13
+            } else {
16 14
                 $this->parts = $namespace;
17 15
             }
18
-        }
19
-        else {
16
+        } else {
20 17
             $this->parts = [];
21 18
         }
22 19
     }
Please login to merge, or discard this patch.
src/Padawan/Domain/Core/Node/ClassProperty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * @param integer $modifier
47 47
      */
48
-    public function setModifier($modifier){
48
+    public function setModifier($modifier) {
49 49
         $this->modifier = $modifier;
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
src/Padawan/Parser/ClassParser.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,15 +52,13 @@
 block discarded – undo
52 52
         foreach ($node->stmts AS $child) {
53 53
             if ($child instanceof ClassMethod) {
54 54
                 $classData->addMethod($this->parseMethod($child));
55
-            }
56
-            elseif ($child instanceof Property) {
55
+            } elseif ($child instanceof Property) {
57 56
                 foreach ($child->props AS $prop) {
58 57
                     $classData->addProp(
59 58
                         $this->parseProperty($prop, $child->type, $child->getAttribute('comments'))
60 59
                     );
61 60
                 }
62
-            }
63
-            elseif ($child instanceof ClassConst) {
61
+            } elseif ($child instanceof ClassConst) {
64 62
                 foreach ($child->consts AS $const) {
65 63
                     $classData->addConst($const->name);
66 64
                 }
Please login to merge, or discard this patch.
src/Padawan/Parser/ErrorFreePhpParser.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
     public function parse($content) {
9 9
         try {
10 10
             return parent::parse($content);
11
-        }
12
-        catch (\Exception $e) {
11
+        } catch (\Exception $e) {
13 12
             return $this->semValue;
14 13
         }
15 14
     }
Please login to merge, or discard this patch.
src/Padawan/Parser/ParamParser.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
     }
13 13
     public function parse(Param $node) {
14 14
         $param = new MethodParam($node->name);
15
-        if ($node->type instanceof Name)
16
-            $param->setFQCN($this->useParser->getFQCN($node->type));
17
-        else {
15
+        if ($node->type instanceof Name) {
16
+                    $param->setFQCN($this->useParser->getFQCN($node->type));
17
+        } else {
18 18
             $param->setType($node->type);
19 19
         }
20 20
         return $param;
Please login to merge, or discard this patch.
src/Padawan/Parser/Parser.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
         if (!$createCache || $oldHash !== $hash || empty($ast)) {
56 56
             try {
57 57
                 $ast = $this->parser->parse($content);
58
-            }
59
-            catch (\Exception $e) {
58
+            } catch (\Exception $e) {
60 59
                 $this->logger->addError(sprintf("Parsing failed in file %s\n", $file));
61 60
                 $this->logger->error($e);
62 61
                 return null;
Please login to merge, or discard this patch.
src/Padawan/Parser/CommentParser.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
     public function parse($content) {
9 9
         try {
10 10
             return parent::parse($content);
11
-        }
12
-        catch (\Exception $e) {
11
+        } catch (\Exception $e) {
13 12
             return $this->semValue;
14 13
         }
15 14
     }
Please login to merge, or discard this patch.
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.