-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.php
19 lines (19 loc) · 1.04 KB
/
events.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
* This is a list of all core events, with no listeners currently attached to them.
*/
return [
'duktig.core.app.afterConfiguring' => [],
\Duktig\Core\Event\CoreEvents\EventBeforeAppHandlingRequest::class => [],
\Duktig\Core\Event\CoreEvents\EventAfterAppHandlingRequest::class=> [],
\Duktig\Core\Event\CoreEvents\EventBeforeAppMiddlewareFullStackDispatching::class=> [],
\Duktig\Core\Event\CoreEvents\EventAfterAppMiddlewareFullStackDispatching::class=> [],
\Duktig\Core\Event\CoreEvents\EventBeforeAppMatchingRoute::class=> [],
\Duktig\Core\Event\CoreEvents\EventAfterAppMatchingRoute::class=> [],
\Duktig\Core\Event\CoreEvents\EventBeforeAppRouteHandling::class=> [],
\Duktig\Core\Event\CoreEvents\EventAfterAppRouteHandling::class=> [],
\Duktig\Core\Event\CoreEvents\EventBeforeAppReponseSending::class=> [],
\Duktig\Core\Event\CoreEvents\EventAfterAppReponseHeadersSending::class => [],
\Duktig\Core\Event\CoreEvents\EventAfterAppReponseSending::class => [],
'duktig.core.app.beforeTerminate'=> [],
];