Completed
Push — master ( c96e77...5c4ada )
by Chase
13s
created
src/LaravelDatadogHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         $prefixedData = array();
25 25
         foreach ($data as $stat => $value) {
26 26
             $prefixedKey = self::prefix($stat);
27
-            $prefixedData[$prefixedKey] = $value;
27
+            $prefixedData[ $prefixedKey ] = $value;
28 28
         }
29 29
         return $prefixedData;
30 30
     }
Please login to merge, or discard this patch.
src/Middleware/LaravelDatadogMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         ];
45 45
 
46 46
         if (!config('datadog-helper.middleware_disable_url_tag', false)) {
47
-            $tags["url"] = $request->getSchemeAndHttpHost() . $request->getRequestUri();
47
+            $tags[ "url" ] = $request->getSchemeAndHttpHost() . $request->getRequestUri();
48 48
         }
49 49
 
50 50
         Datadog::timing('request_time', $duration, 1, $tags);
Please login to merge, or discard this patch.