Completed
Push — master ( 9e9693...9e4b3d )
by Emad
02:46
created
src/Uuids.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     protected static function boot()
12 12
     {
13 13
         parent::boot();
14
-        static::creating(function ($model) {
14
+        static::creating(function($model) {
15 15
             $model->{$model->getKeyName()} = UUIDManager::generate();
16 16
         });
17 17
     }
Please login to merge, or discard this patch.
src/UUIDManager.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -35,17 +35,17 @@
 block discarded – undo
35 35
 
36 36
             mt_srand((double)microtime()*10000);
37 37
             $charid = strtoupper(md5(uniqid(rand(), true)));
38
-            $hyphen = chr(45);// "-"
38
+            $hyphen = chr(45); // "-"
39 39
             $uuid = chr(123)// "{"
40 40
             .substr($charid, 0, 8).$hyphen
41 41
             .substr($charid, 8, 4).$hyphen
42
-            .substr($charid,12, 4).$hyphen
43
-            .substr($charid,16, 4).$hyphen
44
-            .substr($charid,20,12)
45
-            .chr(125);// "}"
42
+            .substr($charid, 12, 4).$hyphen
43
+            .substr($charid, 16, 4).$hyphen
44
+            .substr($charid, 20, 12)
45
+            .chr(125); // "}"
46 46
 
47
-            $uuid = str_replace('{', '' , $uuid);
48
-            $uuid = str_replace('}', '' , $uuid);
47
+            $uuid = str_replace('{', '', $uuid);
48
+            $uuid = str_replace('}', '', $uuid);
49 49
 
50 50
             return $uuid;
51 51
     
Please login to merge, or discard this patch.
src/LaravelUuidServiceProvider.php 1 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.