Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class UntellableStreamException extends RuntimeException |
||
23 | { |
||
24 | public static function dueToMissingResource() : self |
||
25 | { |
||
26 | return new self('No resource available; cannot tell position'); |
||
27 | } |
||
28 | |||
29 | public static function dueToPhpError() : self |
||
32 | } |
||
33 | |||
34 | public static function forCallbackStream() : self |
||
37 | } |
||
38 | } |
||
39 |