Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
17 | final class InvalidTokenException extends RuntimeException |
||
18 | { |
||
19 | /** |
||
20 | * Creates a new exception for the given buffer. |
||
21 | * |
||
22 | * @param string $buffer The buffer to create the exception for. |
||
23 | * @return InvalidTokenException |
||
24 | */ |
||
25 | public static function createForBuffer(string $buffer): InvalidTokenException |
||
32 |