mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 10:53:05 +00:00
turn EventPriority into final class instead of abstract class
This commit is contained in:
@ -35,7 +35,12 @@ use function strtoupper;
|
||||
*
|
||||
* MONITOR events should not change the event outcome or contents
|
||||
*/
|
||||
abstract class EventPriority{
|
||||
final class EventPriority{
|
||||
|
||||
private function __construct(){
|
||||
//NOOP
|
||||
}
|
||||
|
||||
public const ALL = [
|
||||
self::LOWEST,
|
||||
self::LOW,
|
||||
|
Reference in New Issue
Block a user