Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Engelsystem\Http;
6
7/**
8 * To switch between different URL schemes.
9 */
10interface UrlGeneratorInterface
11{
12    public function to(string $path, array $parameters = []): string;
13}