| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | final class BaseUriFactory implements UriFactoryInterface |
||
| 25 | { |
||
| 26 | /** @var UriInterface */ |
||
| 27 | private $baseUrl; |
||
| 28 | |||
| 29 | /** @var UriFactoryInterface */ |
||
| 30 | private $uriFactory; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * BaseUriFactory constructor. |
||
| 34 | * |
||
| 35 | * @param UriInterface $baseUrl |
||
| 36 | * @param UriFactoryInterface $uriFactory |
||
| 37 | */ |
||
| 38 | public function __construct( |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string $uri |
||
| 48 | * |
||
| 49 | * @return UriInterface |
||
| 50 | */ |
||
| 51 | public function createUri(string $uri = ''): UriInterface |
||
| 59 |