| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class EventHandlerAlreadyExists extends AFaultManagerException |
||
| 20 | { |
||
| 21 | /** @var int */ |
||
| 22 | protected $code = 66006; |
||
| 23 | |||
| 24 | /** @var string */ |
||
| 25 | protected $message = 'A handler for "%s" already exists.'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * EventHandlerAlreadyExists constructor. |
||
| 29 | * @param string $eventHandler |
||
| 30 | */ |
||
| 31 | public function __construct(string $eventHandler) |
||
| 38 |