Completed
Pull Request — develop (#144)
by Jaap
08:03
created
example.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,16 +22,16 @@
 block discarded – undo
22 22
 $projectFactory = \phpDocumentor\Reflection\Php\ProjectFactory::createInstance();
23 23
 
24 24
 // Create an array of files to analize.
25
-$files = [ new \phpDocumentor\Reflection\File\LocalFile('tests/example.file.php') ];
25
+$files = [new \phpDocumentor\Reflection\File\LocalFile('tests/example.file.php')];
26 26
 
27 27
 //create a new project 'MyProject' containing all elements in the files.
28 28
 /** @var Project $project */
29 29
 $project = $projectFactory->create('MyProject', $files);
30 30
 
31 31
 // As an example of what you can do, let's list all class names in the file 'tests/example.file.php'.
32
-echo 'List all classes in the example source file: ' . PHP_EOL;
32
+echo 'List all classes in the example source file: '.PHP_EOL;
33 33
 
34 34
 /** @var \phpDocumentor\Reflection\Php\Class_ $class */
35 35
 foreach ($project->getFiles()['tests/example.file.php']->getClasses() as $class) {
36
-    echo '- ' . $class->getFqsen() . PHP_EOL;
36
+    echo '- '.$class->getFqsen().PHP_EOL;
37 37
 }
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     {
57 57
         $this->nodesFactory = $nodesFactory;
58 58
 
59
-        $lastCallable = function ($command) {
59
+        $lastCallable = function($command) {
60 60
             return $this->createFile($command);
61 61
         };
62 62
 
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Class_.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $classElement = new ClassElement(
63 63
             $object->fqsen,
64 64
             $docBlock,
65
-            $object->extends ? new Fqsen('\\' . $object->extends) : null,
65
+            $object->extends ? new Fqsen('\\'.$object->extends) : null,
66 66
             $object->isAbstract(),
67 67
             $object->isFinal(),
68 68
             new Location($object->getLine())
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         if (isset($object->implements)) {
72 72
             foreach ($object->implements as $interfaceClassName) {
73 73
                 $classElement->addInterface(
74
-                    new Fqsen('\\' . $interfaceClassName->toString())
74
+                    new Fqsen('\\'.$interfaceClassName->toString())
75 75
                 );
76 76
             }
77 77
         }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                 switch (get_class($stmt)) {
82 82
                     case TraitUse::class:
83 83
                         foreach ($stmt->traits as $use) {
84
-                            $classElement->addUsedTrait(new Fqsen('\\' . $use->toString()));
84
+                            $classElement->addUsedTrait(new Fqsen('\\'.$use->toString()));
85 85
                         }
86 86
                         break;
87 87
                     case PropertyNode::class:
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Trait_.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
                         break;
73 73
                     case TraitUse::class:
74 74
                         foreach ($stmt->traits as $use) {
75
-                            $trait->addUsedTrait(new Fqsen('\\' . $use->toString()));
75
+                            $trait->addUsedTrait(new Fqsen('\\'.$use->toString()));
76 76
                         }
77 77
                         break;
78 78
                 }
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Method.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
         if ($object->getReturnType() !== null) {
57 57
             $typeResolver = new TypeResolver();
58 58
             if ($object->getReturnType() instanceof NullableType) {
59
-                $typeString = '?' . $object->getReturnType()->type;
59
+                $typeString = '?'.$object->getReturnType()->type;
60 60
             } else {
61
-                $typeString = (string) $object->getReturnType();
61
+                $typeString = (string)$object->getReturnType();
62 62
             }
63 63
 
64 64
             $returnType = $typeResolver->resolve($typeString, $context);
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Namespace_.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function addClass(Fqsen $class): void
69 69
     {
70
-        $this->classes[(string) $class] = $class;
70
+        $this->classes[(string)$class] = $class;
71 71
     }
72 72
 
73 73
     /**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public function addConstant(Fqsen $contant): void
87 87
     {
88
-        $this->constants[(string) $contant] = $contant;
88
+        $this->constants[(string)$contant] = $contant;
89 89
     }
90 90
 
91 91
     /**
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function addFunction(Fqsen $function): void
105 105
     {
106
-        $this->functions[(string) $function] = $function;
106
+        $this->functions[(string)$function] = $function;
107 107
     }
108 108
 
109 109
     /**
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function addInterface(Fqsen $interface): void
123 123
     {
124
-        $this->interfaces[(string) $interface] = $interface;
124
+        $this->interfaces[(string)$interface] = $interface;
125 125
     }
126 126
 
127 127
     /**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      */
140 140
     public function addTrait(Fqsen $trait): void
141 141
     {
142
-        $this->traits[(string) $trait] = $trait;
142
+        $this->traits[(string)$trait] = $trait;
143 143
     }
144 144
 
145 145
     /**
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Function_.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
         if ($object->getReturnType() !== null) {
57 57
             $typeResolver = new TypeResolver();
58 58
             if ($object->getReturnType() instanceof NullableType) {
59
-                $typeString = '?' . $object->getReturnType()->type;
59
+                $typeString = '?'.$object->getReturnType()->type;
60 60
             } else {
61
-                $typeString = (string) $object->getReturnType();
61
+                $typeString = (string)$object->getReturnType();
62 62
             }
63 63
 
64 64
             $returnType = $typeResolver->resolve($typeString, $context);
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/PrettyPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,6 +57,6 @@
 block discarded – undo
57 57
             return $node->value;
58 58
         }
59 59
 
60
-        return (string) $node->getAttribute('originalValue');
60
+        return (string)$node->getAttribute('originalValue');
61 61
     }
62 62
 }
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/NodeVisitor/ElementNameResolver.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         switch (get_class($node)) {
80 80
             case Namespace_::class:
81
-                $this->resetState('\\' . $node->name . '\\');
81
+                $this->resetState('\\'.$node->name.'\\');
82 82
                 $node->fqsen = new Fqsen($this->buildName());
83 83
                 break;
84 84
             case Class_::class:
@@ -88,15 +88,15 @@  discard block
 block discarded – undo
88 88
                     return NodeTraverser::DONT_TRAVERSE_CHILDREN;
89 89
                 }
90 90
 
91
-                $this->parts->push((string) $node->name);
91
+                $this->parts->push((string)$node->name);
92 92
                 $node->fqsen = new Fqsen($this->buildName());
93 93
                 break;
94 94
             case Function_::class:
95
-                $this->parts->push($node->name . '()');
95
+                $this->parts->push($node->name.'()');
96 96
                 $node->fqsen = new Fqsen($this->buildName());
97 97
                 return NodeTraverser::DONT_TRAVERSE_CHILDREN;
98 98
             case ClassMethod::class:
99
-                $this->parts->push('::' . $node->name . '()');
99
+                $this->parts->push('::'.$node->name.'()');
100 100
                 $node->fqsen = new Fqsen($this->buildName());
101 101
                 return NodeTraverser::DONT_TRAVERSE_CHILDREN;
102 102
             case ClassConst::class:
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                 $node->fqsen = new Fqsen($this->buildName());
108 108
                 break;
109 109
             case PropertyProperty::class:
110
-                $this->parts->push('::$' . $node->name);
110
+                $this->parts->push('::$'.$node->name);
111 111
                 $node->fqsen = new Fqsen($this->buildName());
112 112
                 break;
113 113
         }
@@ -134,6 +134,6 @@  discard block
 block discarded – undo
134 134
             $name .= $part;
135 135
         }
136 136
 
137
-        return rtrim((string) $name, '\\');
137
+        return rtrim((string)$name, '\\');
138 138
     }
139 139
 }
Please login to merge, or discard this patch.