Passed
Push — master ( c2b9ac...6fbb60 )
by Jonathan
09:11
created
app/Support/Traits/UccelloModule.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
28 28
         }
29 29
 
30 30
         // Create uuid after save
31
-        static::created(function ($model) {
31
+        static::created(function($model) {
32 32
             $module = Module::where('model_class', get_class($model))->first();
33 33
             if ($module) {
34 34
                 Entity::create([
35
-                    'id' => (string) Str::uuid(),
35
+                    'id' => (string)Str::uuid(),
36 36
                     'module_id' => $module->id,
37 37
                     'record_id' => $model->getKey(),
38 38
                     'creator_id' => auth()->id(),
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         });
42 42
 
43 43
         // Delete uuid after forced delete
44
-        static::deleted(function ($model) {
44
+        static::deleted(function($model) {
45 45
             if (!empty($model->uuid) && (!method_exists($model, 'isForceDeleting') || $model->isForceDeleting() === true)) {
46 46
                 $entity = Entity::find($model->uuid);
47 47
                 if ($entity) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     public function initializeUccelloModule()
55 55
     {
56
-        $this->appends = array_merge($this->appends, ['recordLabel','uuid']);
56
+        $this->appends = array_merge($this->appends, [ 'recordLabel', 'uuid' ]);
57 57
     }
58 58
 
59 59
     protected static function isFilteredByUser()
@@ -85,15 +85,15 @@  discard block
 block discarded – undo
85 85
 
86 86
     protected static function getModuleFromClass($className)
87 87
     {
88
-        $modules = Cache::rememberForever('modules_by_model_class', function () {
88
+        $modules = Cache::rememberForever('modules_by_model_class', function() {
89 89
             $modulesGroupedByModelClass = collect();
90
-            Module::all()->map(function ($item) use ($modulesGroupedByModelClass) {
91
-                $modulesGroupedByModelClass[$item->model_class] = $item;
90
+            Module::all()->map(function($item) use ($modulesGroupedByModelClass) {
91
+                $modulesGroupedByModelClass[ $item->model_class ] = $item;
92 92
                 return $modulesGroupedByModelClass;
93 93
             });
94 94
             return $modulesGroupedByModelClass;
95 95
         });
96
-        return $modules[(string) $className] ?? null;
96
+        return $modules[ (string)$className ] ?? null;
97 97
     }
98 98
 
99 99
     public function getUuidAttribute()
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
         $module = $this->module;
104 104
 
105 105
         if ($module) {
106
-            return Cache::rememberForever('uuid_'.$module->getKey().'_'.$this->getKey(), function () use ($module) {
106
+            return Cache::rememberForever('uuid_'.$module->getKey().'_'.$this->getKey(), function() use ($module) {
107 107
                 $entity = Entity::where('module_id', $module->getKey())
108 108
                 ->where('record_id', $this->getKey())
109 109
                 ->first();
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         if (!empty($domain) && Schema::hasColumn($this->table, 'domain_id')) {
160 160
             // Activate descendant view if the user is allowed
161 161
             if (Auth::user() && Auth::user()->canSeeDescendantsRecords($domain) && $withDescendants) {
162
-                $query->whereIn('domain_id', function ($query) use ($domain) {
162
+                $query->whereIn('domain_id', function($query) use ($domain) {
163 163
                     $query->select('id')
164 164
                     ->from((new Domain)->getTable())
165 165
                     ->where('path', 'like', $domain->id.'%')
Please login to merge, or discard this patch.