@@ -7,7 +7,7 @@ |
||
7 | 7 | * @copyright (c) 2018, Sebastian Rapetti |
8 | 8 | * @license http://opensource.org/licenses/MIT MIT License |
9 | 9 | */ |
10 | -declare(strict_types = 1); |
|
10 | +declare(strict_types=1); |
|
11 | 11 | |
12 | 12 | namespace Linna\DotEnv; |
13 | 13 |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $topology = []; |
79 | 79 | |
80 | 80 | foreach ($array as $char) { |
81 | - $topology[] = $this->getTopologyGroup((string)$char); |
|
81 | + $topology[] = $this->getTopologyGroup((string) $char); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | return implode($topology); |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $password = []; |
128 | 128 | |
129 | 129 | foreach ($array as $char) { |
130 | - $int = ord((string)$char); |
|
130 | + $int = ord((string) $char); |
|
131 | 131 | |
132 | 132 | if (isset($groups[$int])) { |
133 | 133 | $password[] = $this->getRandomChar($this->chars[$groups[$int]]); |
@@ -143,7 +143,7 @@ |
||
143 | 143 | return $this->route['callback']; |
144 | 144 | } |
145 | 145 | |
146 | - return function () { |
|
146 | + return function() { |
|
147 | 147 | }; |
148 | 148 | } |
149 | 149 |
@@ -7,7 +7,7 @@ |
||
7 | 7 | * @copyright (c) 2018, Sebastian Rapetti |
8 | 8 | * @license http://opensource.org/licenses/MIT MIT License |
9 | 9 | */ |
10 | -declare(strict_types = 1); |
|
10 | +declare(strict_types=1); |
|
11 | 11 | |
12 | 12 | namespace Linna\Helper; |
13 | 13 |