File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/league/uri
Upload
[..]
BaseUri.php (20.04 KB)
Edit
Rename
Del
Builder.php (10.14 KB)
Edit
Rename
Del
Http.php (11.08 KB)
Edit
Rename
Del
HttpFactory.php (539 B)
Edit
Rename
Del
LICENSE (1.06 KB)
Edit
Rename
Del
SchemeType.php (655 B)
Edit
Rename
Del
Uri.php (63.18 KB)
Edit
Rename
Del
UriInfo.php (3.33 KB)
Edit
Rename
Del
UriResolver.php (1.93 KB)
Edit
Rename
Del
UriScheme.php (5.16 KB)
Edit
Rename
Del
UriTemplate/
Rename
Del
UriTemplate.php (11.45 KB)
Edit
Rename
Del
Urn.php (18.16 KB)
Edit
Rename
Del
composer.json (2.44 KB)
Edit
Rename
Del
Edit: HttpFactory.php
<?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); } }
Simpan