Passed
Push — master ( ea4374...2f7c83 )
by Lv
02:12
created
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     public function register()
17 17
     {
18
-        $this->app->singleton(Convert::class, function () {
18
+        $this->app->singleton(Convert::class, function() {
19 19
             return new Convert();
20 20
         });
21 21
         $this->app->alias(Convert::class, 'convert');
Please login to merge, or discard this patch.
src/Convert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
         }
178 178
         $number = \trim(\str_replace(' ', '', $number), ' \t\n\r');
179 179
         if ($number !== 0) {
180
-            $number = \ltrim($number,'\0\x0B');
180
+            $number = \ltrim($number, '\0\x0B');
181 181
         }
182 182
         $pos_dot = \strpos($number, '.');
183 183
         if (false !== $pos_dot) {
Please login to merge, or discard this patch.