Completed
Push — master ( 9e9693...9e4b3d )
by Emad
02:46
created
src/Facades/UUID.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
      */
15 15
     protected static function getFacadeAccessor()
16 16
     {
17
-      return UUIDManager::class;
17
+        return UUIDManager::class;
18 18
     }
19 19
 }
20 20
\ No newline at end of file
Please login to merge, or discard this patch.
src/LaravelUuidServiceProvider.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
 
7 7
 class LaravelUuidServiceProvider extends ServiceProvider
8 8
 {
9
-     /**
10
-     * Indicates if loading of the provider is deferred.
11
-     *
12
-     * @var bool
13
-     */
9
+        /**
10
+         * Indicates if loading of the provider is deferred.
11
+         *
12
+         * @var bool
13
+         */
14 14
     protected $defer = false;
15 15
 
16 16
     /**
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      */
21 21
     public function boot()
22 22
     {
23
-  //
23
+    //
24 24
     }
25 25
 
26 26
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function register()
32 32
     {
33
-        $this->app->singleton(UUIDManager::class, function () {
33
+        $this->app->singleton(UUIDManager::class, function() {
34 34
             return new UUIDManager();
35 35
         });
36 36
     }
Please login to merge, or discard this patch.