Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
league /
uri /
Delete
Unzip
Name
Size
Permission
Date
Action
UriTemplate
[ DIR ]
drwxr-xr-x
2024-12-08 08:40
BaseUri.php
20.63
KB
-rw-r--r--
2024-12-08 08:40
Http.php
9.2
KB
-rw-r--r--
2024-12-08 08:40
HttpFactory.php
539
B
-rw-r--r--
2024-12-08 08:40
LICENSE
1.06
KB
-rw-r--r--
2024-12-08 08:40
Uri.php
40.11
KB
-rw-r--r--
2024-12-08 08:40
UriInfo.php
3.33
KB
-rw-r--r--
2024-12-08 08:40
UriResolver.php
1.93
KB
-rw-r--r--
2024-12-08 08:40
UriTemplate.php
3.72
KB
-rw-r--r--
2024-12-08 08:40
composer.json
2
KB
-rw-r--r--
2024-12-08 08:40
Save
Rename
<?php /** * League.Uri (https://uri.thephpleague.com) * * (c) Ignace Nyamagana Butera <nyamsprod@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace League\Uri; use Psr\Http\Message\UriFactoryInterface; use Psr\Http\Message\UriInterface; final class HttpFactory implements UriFactoryInterface { public function createUri(string $uri = ''): UriInterface { return Http::new($uri); } }