summaryrefslogtreecommitdiff
path: root/src/Routing/UrlGeneratorInterface.php
blob: d97da30dde442aae0ad38a143433318a918932c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Engelsystem\Routing;

interface UrlGeneratorInterface
{
    /**
     * @param string $path
     * @param array  $parameters
     * @return string
     */
    public function to($path, $parameters = []);
}