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