initial checkin
[m6w6/hikke] / lib / hikke / Event / Prioritized.php
1 <?php
2
3 /**
4 * Hikke
5 *
6 * @author Michael Wallner <mike@php.net>
7 */
8 namespace hikke\Event;
9
10 /**
11 * Prioritized
12 *
13 * @package hikke\Event
14 */
15 interface Prioritized
16 {
17 /**
18 * Get the object's priority, the closer the value to 0 the higher the priority
19 * @return int|float
20 */
21 public function getPriority();
22 }