Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class EventCacheContainer extends Container |
||
8 | { |
||
9 | protected $fired_event_key = 'actual'; |
||
10 | |||
11 | protected $event_ancestor_key = 'ancestors'; |
||
12 | |||
13 | protected $event_listeners_key = 'listeners'; |
||
14 | |||
15 | /** TODO: Implement PSR Cache for this */ |
||
16 | public function __construct() |
||
21 | } |
||
22 | |||
23 | public function addActual(string $event_name, int $index) |
||
30 |