@@ -1,5 +1,5 @@ |
||
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. |
@@ -1,5 +1,5 @@ |
||
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. |
@@ -1,5 +1,5 @@ |
||
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. |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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())); |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace phpDocumentor\Reflection\Php\Factory; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 | /** |
@@ -1,5 +1,5 @@ |
||
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. |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -1,5 +1,5 @@ |
||
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. |