Phalcon\Http\Client\Provider\Stream::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        if (!self::isAvailable()) {
            throw new ProviderException('HTTP or HTTPS stream wrappers not registered');
        }
        $this->context = stream_context_create();
        $this->initOptions();
        parent::__construct();
    }