Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 0 |
1 | <?php |
||
8 | final class UnexpectedFrame extends RuntimeException |
||
9 | { |
||
10 | private $frame; |
||
11 | |||
12 | 4 | public function __construct(Frame $frame, string ...$names) |
|
13 | { |
||
14 | 4 | parent::__construct(sprintf( |
|
15 | 4 | 'Expected %s', |
|
16 | 4 | \implode(' or ', $names) |
|
17 | )); |
||
18 | 4 | $this->frame = $frame; |
|
19 | 4 | } |
|
20 | |||
21 | public function frame(): Frame |
||
24 | } |
||
25 | } |
||
26 |