Completed
Push — b0.25.0 ( 8d1eb0...bc6f08 )
by Sebastian
02:46
created
src/Linna/Authentication/PasswordGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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]]);
Please login to merge, or discard this patch.
src/Linna/Router/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
             return $this->route['callback'];
144 144
         }
145 145
 
146
-        return function () {
146
+        return function() {
147 147
         };
148 148
     }
149 149
 
Please login to merge, or discard this patch.