Completed
Push — master ( d75d81...07cd5a )
by Arthur
03:07
created
src/Concerns/HasAttributes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     public function fill(array $attributes)
19 19
     {
20
-        $attributes = array_merge($attributes,$this->resolveAttributeCasting($attributes));
20
+        $attributes = array_merge($attributes, $this->resolveAttributeCasting($attributes));
21 21
 
22 22
         $attributes = array_merge($this->attributes, $attributes);
23 23
 
Please login to merge, or discard this patch.
src/Action.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
     public function runUnauthorized(array $attributes = [])
52 52
     {
53
-       return $this->run($attributes, false);
53
+        return $this->run($attributes, false);
54 54
     }
55 55
 
56 56
     public function run(array $attributes = [], $authorization = true)
Please login to merge, or discard this patch.