Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
Filesystem
Driver
Https.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Framework\Filesystem\Driver
;
9
14
class
Https
extends
Http
15
{
21
protected
$scheme
=
'https'
;
22
29
protected
function
parseUrl
(
$path
)
30
{
31
$urlProp = parent::parseUrl(
$path
);
32
33
if
(!isset($urlProp[
'port'
])) {
34
$urlProp[
'port'
] = 443;
35
}
36
37
return
$urlProp;
38
}
39
47
protected
function
open
($hostname, $port)
48
{
49
return
parent::open(
'ssl://'
. $hostname, $port);
50
}
51
}
Magento\Framework\Filesystem\Driver\Https\$scheme
$scheme
Definition:
Https.php:21
Magento\Framework\Filesystem\Driver
Definition:
File.php:9
Magento\Framework\Filesystem\Driver\Https\open
open($hostname, $port)
Definition:
Https.php:47
Magento\Framework\Filesystem\Driver\Https
Definition:
Https.php:14
Magento\Framework\Filesystem\Driver\Http
Definition:
Http.php:17
Magento\Framework\Filesystem\Driver\Https\parseUrl
parseUrl($path)
Definition:
Https.php:29
$path
$path
Definition:
import_with_filesystem_images.php:14