Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| UriFactory | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
1 / 1 |
| createUri | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |||
| 1 | <?php |
| 2 | declare(strict_types=1); |
| 3 | /** |
| 4 | * Pop PHP Framework (https://www.popphp.org/) |
| 5 | * |
| 6 | * @link https://github.com/popphp/popphp-framework |
| 7 | * @author Nick Sagona, III <dev@noladev.com> |
| 8 | * @copyright Copyright (c) 2009-2027 NOLA Interactive, LLC. |
| 9 | * @license https://www.popphp.org/license New BSD License |
| 10 | */ |
| 11 | |
| 12 | /** |
| 13 | * @namespace |
| 14 | */ |
| 15 | namespace Pop\Http\Factory; |
| 16 | |
| 17 | use Psr\Http\Message\UriFactoryInterface; |
| 18 | use Psr\Http\Message\UriInterface; |
| 19 | use Pop\Http\Uri; |
| 20 | |
| 21 | /** |
| 22 | * PSR-17 URI factory class |
| 23 | * |
| 24 | * @category Pop |
| 25 | * @package Pop\Http |
| 26 | * @author Nick Sagona, III <dev@noladev.com> |
| 27 | * @copyright Copyright (c) 2009-2027 NOLA Interactive, LLC. |
| 28 | * @license https://www.popphp.org/license New BSD License |
| 29 | * @version 6.0.0 |
| 30 | */ |
| 31 | class UriFactory implements UriFactoryInterface |
| 32 | { |
| 33 | |
| 34 | /** |
| 35 | * Create a new URI |
| 36 | * |
| 37 | * @param string $uri |
| 38 | * @return UriInterface |
| 39 | */ |
| 40 | public function createUri(string $uri = ''): UriInterface |
| 41 | { |
| 42 | return new Uri(($uri !== '') ? $uri : null); |
| 43 | } |
| 44 | |
| 45 | } |