Completed
Push — master ( 99bfd8...3aa847 )
by Emad
9s
created
src/Uuids.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,12 +12,12 @@
 block discarded – undo
12 12
      */
13 13
     protected static function bootUuids()
14 14
     {
15
-        static::creating(function ($model) {
15
+        static::creating(function($model) {
16 16
             if (!$model->{config('uuid.default_uuid_column')}) {
17 17
                 $model->{config('uuid.default_uuid_column')} = strtoupper(Uuid::uuid4()->toString());
18 18
             }
19 19
         });
20
-        static::saving(function ($model) {
20
+        static::saving(function($model) {
21 21
             $original_uuid = $model->getOriginal(config('uuid.default_uuid_column'));
22 22
             if ($original_uuid !== $model->{config('uuid.default_uuid_column')}) {
23 23
                 $model->{config('uuid.default_uuid_column')} = $original_uuid;
Please login to merge, or discard this patch.