Passed
Push — master ( 236504...4725be )
by Emad
02:11
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 UUID::class;
17
+        return UUID::class;
18 18
     }
19 19
 }
20 20
\ No newline at end of file
Please login to merge, or discard this patch.
src/larauuidServiceProvider.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@  discard block
 block discarded – undo
7 7
 
8 8
 class larauuidServiceProvider extends ServiceProvider
9 9
 {
10
-     /**
11
-     * Indicates if loading of the provider is deferred.
12
-     *
13
-     * @var bool
14
-     */
10
+        /**
11
+         * Indicates if loading of the provider is deferred.
12
+         *
13
+         * @var bool
14
+         */
15 15
     protected $defer = false;
16 16
 
17 17
     /**
@@ -47,21 +47,21 @@  discard block
 block discarded – undo
47 47
         $this->app->singleton(UUIDManager::class, function () {
48 48
             return new UUIDManager();
49 49
         });
50
- /*       $this->app->bind('larauuid',function($app){
50
+    /*       $this->app->bind('larauuid',function($app){
51 51
             return new UUID;
52 52
         });*/
53 53
 
54
-      /*  $this->app->singleton(UuidService::class, function($app){
54
+        /*  $this->app->singleton(UuidService::class, function($app){
55 55
             return new UuidService;
56 56
         });*/
57 57
         // use this if your package has a config file
58 58
         // config([
59 59
         //         'config/larauuid.php',
60 60
         // ]);
61
-     /*           $this->app['guid'] = $this->app->share(function($app) {
61
+        /*           $this->app['guid'] = $this->app->share(function($app) {
62 62
             return new GUID;
63 63
         });*/
64
-     /*   $this->app->booting(function() {
64
+        /*   $this->app->booting(function() {
65 65
             $loader = \Illuminate\Foundation\AliasLoader::getInstance();
66 66
             $loader->alias('UUID', 'emadadly\larauuid\Facades\UUID');
67 67
         });*/
Please login to merge, or discard this patch.