turn EventPriority into final class instead of abstract class

This commit is contained in:
Dylan K. Taylor 2019-08-23 19:12:55 +01:00
parent b2cd13daac
commit 4b0b923ca0

View File

@ -35,7 +35,12 @@ use function strtoupper;
* *
* MONITOR events should not change the event outcome or contents * MONITOR events should not change the event outcome or contents
*/ */
abstract class EventPriority{ final class EventPriority{
private function __construct(){
//NOOP
}
public const ALL = [ public const ALL = [
self::LOWEST, self::LOWEST,
self::LOW, self::LOW,