| 1 | <?php |
||
| 5 | class StreamConfig |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The stream settings for the client. |
||
| 9 | * |
||
| 10 | * @return A stream context resource. |
||
| 11 | */ |
||
| 12 | protected $streamContext; |
||
| 13 | |||
| 14 | 9 | public static function configSecure(): StreamConfig |
|
| 27 | |||
| 28 | 5 | public static function configInsecure(): StreamConfig |
|
| 44 | |||
| 45 | 3 | public static function configCrl(): StreamConfig |
|
| 59 | |||
| 60 | 11 | public function __construct($streamContext) |
|
| 64 | |||
| 65 | 10 | public function getContext() |
|
| 69 | } |
||
| 70 |