| 1 | <?php |
||
| 12 | class StreamStateException extends \RuntimeException |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return static |
||
| 16 | */ |
||
| 17 | 7 | final public static function alreadyOpened() |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return static |
||
| 24 | */ |
||
| 25 | 32 | final public static function alreadyClosed() |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @return static |
||
| 32 | */ |
||
| 33 | 19 | final public static function notOpened() |
|
| 37 | |||
| 38 | /** |
||
| 39 | * @return static |
||
| 40 | */ |
||
| 41 | 11 | final public static function notReady() |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return static |
||
| 48 | */ |
||
| 49 | 2 | final public static function notClosed() |
|
| 53 | } |
||
| 54 |