| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Event |
||
| 8 | { |
||
| 9 | public const REPORTS_HISTORY = 'history'; |
||
| 10 | public const REPORTS_MATCHES = 'matches'; |
||
| 11 | public const REPORTS_NOTHING = 'nothing'; |
||
| 12 | |||
| 13 | 1 | public function __construct( |
|
| 21 | 1 | } |
|
| 22 | |||
| 23 | 1 | public static function create(array $meets, bool $shouldEndInputHandler, ?array $fails = null, ?string $reports = null, ?int $maximumInvocations = null, ?int $triggerTimeMilliseconds = null): self |
|
| 28 |