Completed
Pull Request — develop (#126)
by Chuck
10:01
created
src/phpDocumentor/Reflection/Php/Factory/Constant.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/PropertyIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/File/CreateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Interface_.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $docBlock = $this->createDocBlock($strategies, $object->getDocComment(), $context);
59 59
         $parents = [];
60 60
         foreach ($object->extends as $extend) {
61
-            $parents['\\' . (string) $extend] = new Fqsen('\\' . (string) $extend);
61
+            $parents['\\'.(string)$extend] = new Fqsen('\\'.(string)$extend);
62 62
         }
63 63
 
64 64
         $interface = new InterfaceElement($object->fqsen, $parents, $docBlock, new Location($object->getLine()));
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/AbstractFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace phpDocumentor\Reflection\Php\Factory;
5 5
 
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Project.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function addNamespace(Namespace_ $namespace): void
96 96
     {
97
-        $this->namespaces[(string) $namespace->getFqsen()] = $namespace;
97
+        $this->namespaces[(string)$namespace->getFqsen()] = $namespace;
98 98
     }
99 99
 
100 100
     /**
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Function_.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Trait_.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public function addMethod(Method $method): void
83 83
     {
84
-        $this->methods[(string) $method->getFqsen()] = $method;
84
+        $this->methods[(string)$method->getFqsen()] = $method;
85 85
     }
86 86
 
87 87
     /**
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public function addProperty(Property $property): void
101 101
     {
102
-        $this->properties[(string) $property->getFqsen()] = $property;
102
+        $this->properties[(string)$property->getFqsen()] = $property;
103 103
     }
104 104
 
105 105
     /**
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public function addUsedTrait(Fqsen $fqsen): void
140 140
     {
141
-        $this->usedTraits[(string) $fqsen] = $fqsen;
141
+        $this->usedTraits[(string)$fqsen] = $fqsen;
142 142
     }
143 143
 
144 144
     public function getLocation(): Location
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Constant.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * This file is part of phpDocumentor.
Please login to merge, or discard this patch.