Completed
Push — master ( 43440d...d6de26 )
by Mads
29:53 queued 26:03
created
src/Transformers/ApiTransformer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     protected function transformAttributes(array $output, array $data): array
111 111
     {
112 112
         foreach ($data as $key => $value) {
113
-            if (true === $this->strict && ! $this->isMapped($key)) {
113
+            if (true === $this->strict && !$this->isMapped($key)) {
114 114
                 continue;
115 115
             }
116 116
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         /** @var Model $data */
132 132
         $relationships = $data->getRelations();
133 133
         foreach ($relationships as $relationshipName => $relationship) {
134
-            if (true === $this->strict && ! $this->isMapped($relationshipName)) {
134
+            if (true === $this->strict && !$this->isMapped($relationshipName)) {
135 135
                 continue;
136 136
             }
137 137
 
Please login to merge, or discard this patch.
src/Requests/ApiRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
         /**
73 73
          * Remove input fields like _method, _token, etc.
74 74
          */
75
-        $input = array_filter($this->input(), function ($key) {
76
-            return ! Str::startsWith($key, '_');
75
+        $input = array_filter($this->input(), function($key) {
76
+            return !Str::startsWith($key, '_');
77 77
         }, ARRAY_FILTER_USE_KEY);
78 78
 
79 79
         return $this->getTransformer()->transformInput($input);
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     protected function transformValidationOutput($validator): array
155 155
     {
156 156
         return collect($this->getTransformer()->transformOutputKeys($validator->getMessageBag()->toArray()))
157
-            ->reject(function ($error) {
157
+            ->reject(function($error) {
158 158
                 return false === \is_array($error);
159 159
             })
160 160
             ->toArray();
Please login to merge, or discard this patch.