@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | //////////////////////////////////////////////////////////////////////////////// |
3 | 3 | // __________ __ ________ __________ |
4 | 4 | // \______ \ |__ ______ / _____/ ____ _____ ______\______ \ _______ ___ |
@@ -104,8 +104,7 @@ discard block |
||
104 | 104 | { |
105 | 105 | if ($this->implements !== null || $this->extends != null) |
106 | 106 | { |
107 | - throw new Exception |
|
108 | - ( |
|
107 | + throw new Exception( |
|
109 | 108 | 'Can not set a custom filter and filter '. |
110 | 109 | 'by `implements` or `extends`!' |
111 | 110 | ); |
@@ -171,8 +170,7 @@ discard block |
||
171 | 170 | */ |
172 | 171 | protected function searchPsrMaps() |
173 | 172 | { |
174 | - $prefixes = array_merge |
|
175 | - ( |
|
173 | + $prefixes = array_merge( |
|
176 | 174 | $this->composer->getPrefixes(), |
177 | 175 | $this->composer->getPrefixesPsr4() |
178 | 176 | ); |
@@ -188,7 +186,7 @@ discard block |
||
188 | 186 | |
189 | 187 | foreach ($foundSegments as $key => $segment) |
190 | 188 | { |
191 | - if ((string) $nsSegments[$key] !== (string) $segment) |
|
189 | + if ((string)$nsSegments[$key] !== (string)$segment) |
|
192 | 190 | { |
193 | 191 | continue 2; |
194 | 192 | } |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | //////////////////////////////////////////////////////////////////////////////// |
3 | 3 | // __________ __ ________ __________ |
4 | 4 | // \______ \ |__ ______ / _____/ ____ _____ ______\______ \ _______ ___ |