Skip to content

Commit 4afdd75

Browse files
committed
update some
1 parent abcd160 commit 4afdd75

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

src/ClassEvent.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public static function isOnce($event)
124124
*/
125125
public static function isSupportedEvent($event)
126126
{
127-
return $event && preg_match('/^[a-zA-z][\w-]+$/', $event);
127+
return $event && \preg_match('/^[a-zA-z][\w-]+$/', $event);
128128
}
129129

130130
/**

src/EventManager.php

-5
Original file line numberDiff line numberDiff line change
@@ -337,11 +337,6 @@ protected function triggerListeners($listeners, EventInterface $event, $method =
337337
}
338338
}
339339

340-
// protected function collectListeners(EventInterface $event)
341-
// {
342-
// // $name = $event->getName();
343-
// }
344-
345340
/**
346341
* 是否存在 对事件的 监听队列
347342
* @param EventInterface|string $event

src/ListenerPriority.php

+7-8
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@
1414
*/
1515
final class ListenerPriority
1616
{
17-
const MIN = -300;
18-
const LOW = -200;
19-
const BELOW_NORMAL = -100;
20-
const NORMAL = 0;
21-
const ABOVE_NORMAL = 100;
22-
const HIGH = 200;
23-
const MAX = 300;
24-
17+
public const MIN = -300;
18+
public const LOW = -200;
19+
public const BELOW_NORMAL = -100;
20+
public const NORMAL = 0;
21+
public const ABOVE_NORMAL = 100;
22+
public const HIGH = 200;
23+
public const MAX = 300;
2524
}

src/ListenerQueue.php

+10-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class ListenerQueue implements \IteratorAggregate, \Countable
3030
* 计数器。设定最大值为 PHP_INT_MAX
3131
* @var int
3232
*/
33-
private $counter = PHP_INT_MAX;
33+
private $counter = \PHP_INT_MAX;
3434

3535
public function __construct()
3636
{
@@ -131,7 +131,6 @@ public function getAll()
131131
}
132132

133133
unset($queue);
134-
135134
return $listeners;
136135
}
137136

@@ -177,4 +176,13 @@ public function count()
177176
{
178177
return \count($this->queue);
179178
}
179+
180+
/**
181+
* clear queue
182+
*/
183+
public function clear()
184+
{
185+
$this->queue = null;
186+
$this->store = null;
187+
}
180188
}

0 commit comments

Comments
 (0)