Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.149.244
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
league /
glide /
src /
Urls /
Delete
Unzip
Name
Size
Permission
Date
Action
UrlBuilder.php
2.75
KB
-rw-r--r--
2020-11-05 09:00
UrlBuilderFactory.php
622
B
-rw-r--r--
2020-11-05 09:00
Save
Rename
<?php namespace League\Glide\Urls; use League\Glide\Signatures\SignatureFactory; class UrlBuilderFactory { /** * Create UrlBuilder instance. * @param string $baseUrl URL prefixed to generated URL. * @param string|null $signKey Secret key used to secure URLs. * @return UrlBuilder The UrlBuilder instance. */ public static function create($baseUrl, $signKey = null) { $httpSignature = null; if (!is_null($signKey)) { $httpSignature = SignatureFactory::create($signKey); } return new UrlBuilder($baseUrl, $httpSignature); } }