Skip to content
This repository was archived by the owner on May 27, 2024. It is now read-only.

Commit 906f717

Browse files
committed
fix warning
1 parent 7acec0c commit 906f717

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/DogStatsd.php

+7-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@
88

99
class DogStatsd
1010
{
11-
public const OK = 0;
12-
public const WARNING = 1;
13-
public const CRITICAL = 2;
14-
public const UNKNOWN = 3;
11+
// phpcs:disable
12+
const OK = 0;
13+
const WARNING = 1;
14+
const CRITICAL = 2;
15+
const UNKNOWN = 3;
16+
// phpcs:enable
17+
1518

1619
/**
1720
* @var string

0 commit comments

Comments
 (0)