Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | 3 | public function expelRecordedEvents() : array |
|
22 | { |
||
23 | 3 | if ($this instanceof EventAware === false) { |
|
24 | 1 | throw IncompatibleClass::forExpellingEvents($this); |
|
25 | } |
||
26 | |||
27 | 2 | $recordedEvents = $this->recordedEvents; |
|
28 | |||
29 | 2 | $this->recordedEvents = []; |
|
30 | |||
31 | 2 | return $recordedEvents; |
|
32 | } |
||
46 |