ListenerPriority
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 23
c 0
b 0
f 0
wmc 0
lcom 0
cbo 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace League\Event;
6
7
final class ListenerPriority
8
{
9
    /**
10
     * High priority.
11
     *
12
     * @const int
13
     */
14
    public const HIGH = 100;
15
16
    /**
17
     * Normal priority.
18
     *
19
     * @const int
20
     */
21
    public const NORMAL = 0;
22
23
    /**
24
     * Low priority.
25
     *
26
     * @const int
27
     */
28
    public const LOW = -100;
29
}
30