Skip to content

Commit 3dbb05e

Browse files
committed
Added second and third priorities
1 parent 86dac9e commit 3dbb05e

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/Priority.php

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44

55
final class Priority
66
{
7-
const FIRST = 1000;
8-
const EARLY = 750;
9-
const DEFAULT = 500;
10-
const LATE = 250;
11-
const LAST = 0;
7+
const FIRST = 1000;
8+
const SECOND = 999;
9+
const THIRD = 999;
10+
const EARLY = 750;
11+
const DEFAULT = 500;
12+
const LATE = 250;
13+
const THIRD_LAST = 2;
14+
const SECOND_LAST = 1;
15+
const LAST = 0;
1216
}

0 commit comments

Comments
 (0)