| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 15 | final class Listener implements EventSubscriberInterface |
||
| 16 | { |
||
| 17 | /** @var History */ |
||
| 18 | private $history; |
||
| 19 | |||
| 20 | public function __construct(History $history) |
||
| 23 | } |
||
| 24 | |||
| 25 | /** {@inheritDoc} */ |
||
| 26 | public static function getSubscribedEvents() |
||
| 31 | ]; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** Resets the current history of the current client */ |
||
| 35 | public function clear(): void |
||
| 40 |