xref: /plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/Https.php (revision d832d53af2a0f84c34c8d5f17c93ffaa85869e5d)
1<?php
2
3namespace Elastica\Transport;
4
5/**
6 * Elastica Http Transport object.
7 *
8 * @author Nicolas Ruflin <spam@ruflin.com>
9 */
10class Https extends Http
11{
12    /**
13     * Https scheme.
14     *
15     * @var string https scheme
16     */
17    protected $_scheme = 'https';
18}
19