Passed
Branch main (7173e8)
by 0TO10
02:09
created
src/Observability/APM/Agent/NewRelic/NewRelicAgent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
             'inputQuery' => $inputQuery,
228 228
         ];
229 229
 
230
-        $parameters = array_filter($parameters, static function ($value): bool {
230
+        $parameters = array_filter($parameters, static function($value): bool {
231 231
             return null !== $value;
232 232
         });
233 233
 
Please login to merge, or discard this patch.
src/Nouve/Tests/APM/Agents/NewRelicAgentTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -376,7 +376,7 @@
 block discarded – undo
376 376
         $this->newAgentMock
377 377
             ->expects($this->once())
378 378
             ->method('__call')
379
-            ->with('newrelic_add_custom_parameter',[
379
+            ->with('newrelic_add_custom_parameter', [
380 380
                 'SomeParameter',
381 381
                 'test',
382 382
             ])
Please login to merge, or discard this patch.