Passed
Push — master ( 7bc374...cf39f3 )
by Arthur
05:05
created
src/Modules/Machine/Database/factories/MachineFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Faker\Generator as Faker;
4 4
 
5
-$factory->define(Modules\Machine\Entities\Machine::class, function (Faker $faker) {
5
+$factory->define(Modules\Machine\Entities\Machine::class, function(Faker $faker) {
6 6
     $os = [
7 7
         'MAC',
8 8
         'WINDOWS',
Please login to merge, or discard this patch.
src/Modules/Machine/Http/Controllers/MachineController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,6 +99,6 @@
 block discarded – undo
99 99
 
100 100
         $this->authorize('delete', $machine);
101 101
 
102
-        return \response()->json(['deleted']);
102
+        return \response()->json([ 'deleted' ]);
103 103
     }
104 104
 }
Please login to merge, or discard this patch.
src/Modules/Machine/Entities/Machine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * @var array
33 33
      */
34
-    protected $guarded = [];
34
+    protected $guarded = [ ];
35 35
 
36 36
     public function user()
37 37
     {
Please login to merge, or discard this patch.