1 <?php
 2 /**
 3  * Part of the Joomla Framework Event Package
 4  *
 5  * @copyright  Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 6  * @license    GNU General Public License version 2 or later; see LICENSE
 7  */
 8 
 9 namespace Joomla\Event;
10 
11 /**
12  * An enumeration of priorities for event listeners,
13  * that you are encouraged to use when adding them in the Dispatcher.
14  *
15  * @since  1.0
16  */
17 final class Priority
18 {
19     const MIN = -3;
20     const LOW = -2;
21     const BELOW_NORMAL = -1;
22     const NORMAL = 0;
23     const ABOVE_NORMAL = 1;
24     const HIGH = 2;
25     const MAX = 3;
26 }
27