1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract; |
4: | |
5: | /** |
6: | * @api |
7: | */ |
8: | interface HasMessageLevel |
9: | { |
10: | public const LEVEL_EMERGENCY = 0; |
11: | public const LEVEL_ALERT = 1; |
12: | public const LEVEL_CRITICAL = 2; |
13: | public const LEVEL_ERROR = 3; |
14: | public const LEVEL_WARNING = 4; |
15: | public const LEVEL_NOTICE = 5; |
16: | public const LEVEL_INFO = 6; |
17: | public const LEVEL_DEBUG = 7; |
18: | } |
19: |