@@ -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]]); |
@@ -199,7 +199,7 @@ |
||
| 199 | 199 | return $this->callback; |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - return function () { |
|
| 202 | + return function() { |
|
| 203 | 203 | }; |
| 204 | 204 | } |
| 205 | 205 | |