@@ -62,8 +62,8 @@ public function __construct($identifiers = null)
6262 /**
6363 * Set the event class to utilize
6464 *
65- * @deprecated This method is deprecated with 2.6.0, and will be removed in
66- * 3.0.0. See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
65+ * @deprecated This method is deprecated with 2.6.0, and will be removed in 3.0.0.
66+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
6767 * for details.
6868 * @param string $class
6969 * @return EventManager
@@ -77,8 +77,8 @@ public function setEventClass($class)
7777 /**
7878 * Set shared event manager
7979 *
80- * @deprecated This method is deprecated with 2.6.0, and will be removed in
81- * 3.0.0. See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
80+ * @deprecated This method is deprecated with 2.6.0, and will be removed in 3.0.0.
81+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
8282 * for details.
8383 * @param SharedEventManagerInterface $sharedEventManager
8484 * @return EventManager
@@ -93,8 +93,8 @@ public function setSharedManager(SharedEventManagerInterface $sharedEventManager
9393 /**
9494 * Remove any shared event manager currently attached
9595 *
96- * @deprecated This method is deprecated with 2.6.0, and will be removed in
97- * 3.0.0. See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
96+ * @deprecated This method is deprecated with 2.6.0, and will be removed in 3.0.0.
97+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
9898 * for details.
9999 * @return void
100100 */
@@ -221,12 +221,14 @@ public function trigger($event, $target = null, $argv = [], $callback = null)
221221 * Triggers listeners until the provided callback evaluates the return
222222 * value of one as true, or until all listeners have been executed.
223223 *
224+ * @deprecated The signature of this method will change in 3.0.0.
225+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/changed.md}
226+ * for details.
224227 * @param string|EventInterface $event
225228 * @param string|object $target Object calling emit, or symbol describing target (such as static method name)
226229 * @param array|ArrayAccess $argv Array of arguments; typically, should be associative
227230 * @param callable $callback
228231 * @return ResponseCollection
229- * @deprecated Please use trigger()
230232 * @throws Exception\InvalidCallbackException if invalid callable provided
231233 */
232234 public function triggerUntil ($ event , $ target , $ argv = null , $ callback = null )
@@ -325,8 +327,8 @@ public function attach($event, $callback = null, $priority = 1)
325327 * one or more times, typically to attach to multiple events using local
326328 * methods.
327329 *
328- * @deprecated This method is deprecated with 2.6.0, and will be removed in
329- * 3.0.0. See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
330+ * @deprecated This method is deprecated with 2.6.0, and will be removed in 3.0.0.
331+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
330332 * for details.
331333 * @param ListenerAggregateInterface $aggregate
332334 * @param int $priority If provided, a suggested priority for the aggregate to use
@@ -378,8 +380,8 @@ public function detach($listener)
378380 * Listener aggregates accept an EventManagerInterface instance, and call detach()
379381 * of all previously attached listeners.
380382 *
381- * @deprecated This method is deprecated with 2.6.0, and will be removed in
382- * 3.0.0. See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
383+ * @deprecated This method is deprecated with 2.6.0, and will be removed in 3.0.0.
384+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
383385 * for details.
384386 * @param ListenerAggregateInterface $aggregate
385387 * @return mixed return value of {@link ListenerAggregateInterface::detach()}
@@ -392,8 +394,8 @@ public function detachAggregate(ListenerAggregateInterface $aggregate)
392394 /**
393395 * Retrieve all registered events
394396 *
395- * @deprecated This method is deprecated with 2.6.0, and will be removed in
396- * 3.0.0. See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
397+ * @deprecated This method is deprecated with 2.6.0, and will be removed in 3.0.0.
398+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
397399 * for details.
398400 * @return array
399401 */
@@ -405,8 +407,8 @@ public function getEvents()
405407 /**
406408 * Retrieve all listeners for a given event
407409 *
408- * @deprecated This method is deprecated with 2.6.0, and will be removed in
409- * 3.0.0. See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
410+ * @deprecated This method is deprecated with 2.6.0, and will be removed in 3.0.0.
411+ * See {@link https://github.com/zendframework/zend-eventmanager/blob/develop/doc/book/migration/removed.md}
410412 * for details.
411413 * @param string $event
412414 * @return PriorityQueue
0 commit comments