@@ -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 |