EventDispatcherAware
last analyzed

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
useEventDispatcher() 0 1 ?
eventDispatcher() 0 1 ?
1
<?php
2
3
declare(strict_types=1);
4
5
namespace League\Event;
6
7
interface EventDispatcherAware
8
{
9
    public function useEventDispatcher(EventDispatcher $dispatcher): void;
10
11
    public function eventDispatcher(): EventDispatcher;
12
}
13