/** * */ public function testPropagation() { $event = new Event('event1'); $this->assertFalse($event->isPropagationStopped()); $event->stopPropagation(); $this->assertTrue($event->isPropagationStopped()); }
/** * @param Event $event * @throws \Graphite\Events\Exception */ public static function testCallbackWithStop(Event $event) { $event->setParams(['stop' => true]); $event->stopPropagation(); }