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