<?php/** * Part of the Joomla Framework Event Package * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */namespaceJoomla\Event;/** * An enumeration of priorities for event listeners, * that you are encouraged to use when adding them in the Dispatcher. * * @since 1.0 */finalclassPriority{constMIN=-3;constLOW=-2;constBELOW_NORMAL=-1;constNORMAL=0;constABOVE_NORMAL=1;constHIGH=2;constMAX=3;}