Completed
Push — master ( 39b104...a0772e )
by Sherif
01:57
created
src/Modules/Core/BaseClasses/BaseRepository.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public function __construct($model)
21 21
     {
22
-        $this->model  = $model;
22
+        $this->model = $model;
23 23
     }
24 24
 
25 25
     /**
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $model      = false;
85 85
         $relations  = [];
86 86
 
87
-        \DB::transaction(function () use (&$model, $relations, $data) {
87
+        \DB::transaction(function() use (&$model, $relations, $data) {
88 88
             
89 89
             $model     = $this->prepareModel($data);
90 90
             $relations = $this->prepareRelations($data, $model);
@@ -104,8 +104,8 @@  discard block
 block discarded – undo
104 104
      */
105 105
     public function delete($value, $attribute = 'id')
106 106
     {
107
-        \DB::transaction(function () use ($value, $attribute) {
108
-            $this->model->where($attribute, '=', $value)->lockForUpdate()->get()->each(function ($model) {
107
+        \DB::transaction(function() use ($value, $attribute) {
108
+            $this->model->where($attribute, '=', $value)->lockForUpdate()->get()->each(function($model) {
109 109
                 $model->delete();
110 110
             });
111 111
         });
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     {
196 196
         $model = $this->model->onlyTrashed()->find($id);
197 197
 
198
-        if (! $model) {
198
+        if ( ! $model) {
199 199
             \Errors::notFound(class_basename($this->model).' with id : '.$id);
200 200
         }
201 201
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
          * @var array
220 220
          */
221 221
         $model = Arr::has($data, 'id') ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass;
222
-        if (! $model) {
222
+        if ( ! $model) {
223 223
             \Errors::notFound(class_basename($modelClass).' with id : '.$data['id']);
224 224
         }
225 225
 
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
                      * If the relation has no value then marke the relation data
270 270
                      * related to the model to be deleted.
271 271
                      */
272
-                    if (! $value || ! count($value)) {
272
+                    if ( ! $value || ! count($value)) {
273 273
                         $relations[$relation] = 'delete';
274 274
                     }
275 275
                 }
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
                             /**
297 297
                              * If model doesn't exists.
298 298
                              */
299
-                            if (! $relationModel) {
299
+                            if ( ! $relationModel) {
300 300
                                 \Errors::notFound(class_basename($relationBaseModel).' with id : '.$val['id']);
301 301
                             }
302 302
 
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
                                 /**
328 328
                                  * If model doesn't exists.
329 329
                                  */
330
-                                if (! $relationModel) {
330
+                                if ( ! $relationModel) {
331 331
                                     \Errors::notFound(class_basename($relationBaseModel).' with id : '.$value['id']);
332 332
                                 }
333 333
 
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
         $value      = $removeLast === false ? $value : substr($value, 0, $removeLast);
534 534
         $path       = explode('->', $value);
535 535
         $field      = array_shift($path);
536
-        $result     = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function ($part) {
536
+        $result     = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function($part) {
537 537
             return '"'.$part.'"';
538 538
         })->implode('.'));
539 539
         
Please login to merge, or discard this patch.