Completed
Push — b0.24.0 ( 127adf...72b353 )
by Sebastian
13:53 queued 06:30
created
src/Linna/DotEnv/DotEnv.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
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/Http/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.
src/Linna/Helper/Env.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.