From 6bda1f006a9541bee310440cb16e114875f0b956 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Mon, 27 May 2024 16:44:20 -0400 Subject: [PATCH] fix(php): Make the PHP metrics examples easier to copy/paste (#10167) --- docs/platforms/php/common/metrics/index.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/platforms/php/common/metrics/index.mdx b/docs/platforms/php/common/metrics/index.mdx index 90c5bd1c6802e..819556bd9de7d 100644 --- a/docs/platforms/php/common/metrics/index.mdx +++ b/docs/platforms/php/common/metrics/index.mdx @@ -30,7 +30,7 @@ To emit a counter, do the following: 'browser' => 'Firefox', 'app_version' => '1.0.0', ], -) +); ``` ## Emit a Distribution @@ -48,7 +48,7 @@ To emit a distribution, do the following: tags: [ 'page' => '/home', ], -) +); ``` ## Emit a Set @@ -66,7 +66,7 @@ To emit a set, do the following: tags: [ 'page' => '/home', ], -) +); ``` ## Emit a Gauge @@ -84,7 +84,7 @@ To emit a gauge, do the following: tags: [ 'page' => '/home', ], -) +); ``` ## Emit a Timer