RouterInterface::__construct()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Nymfonya\Component\Http\Interfaces;
6
7
use Nymfonya\Component\Http\Interfaces\RequestInterface;
8
use Nymfonya\Component\Http\Interfaces\RouteInterface;
9
use Nymfonya\Component\Http\Interfaces\RoutesInterface;
10
11
interface RouterInterface
12
{
13
    const URI_SEPARATOR = '/';
14
    const REQUEST_URI = 'REQUEST_URI';
15
16
    /**
17
     * instanciate
18
     *
19
     * @param RoutesInterface $routes
20
     * @param RequestInterface $request
21
     */
22
    public function __construct(RoutesInterface $routes, RequestInterface $request);
0 ignored issues
show
Documentation introduced by
For interfaces and abstract methods it is generally a good practice to add a @return annotation even if it is just @return void or @return null, so that implementors know what to do in the overridden method.

For interface and abstract methods, it is impossible to infer the return type from the immediate code. In these cases, it is generally advisible to explicitly annotate these methods with a @return doc comment to communicate to implementors of these methods what they are expected to return.

Loading history...
23
24
    /**
25
     * assign routes to router
26
     *
27
     * @param RoutesInterface $routes
28
     * @return RouterInterface
29
     */
30
    public function setRoutes(RoutesInterface $routes): RouterInterface;
31
32
    /**
33
     * compiles routes
34
     *
35
     * @return array
36
     */
37
    public function compile(): array;
38
39
    /**
40
     * return slugs params
41
     *
42
     * @return array
43
     */
44
    public function getParams(): array;
45
46
    /**
47
     * set params from slugs
48
     *
49
     * @param RouteInterface $route
50
     * @param array $matches
51
     * @return RouterInterface
52
     */
53
    public function setParams(RouteInterface $route, array $matches): RouterInterface;
54
55
    /**
56
     * return matching regexp pattern
57
     *
58
     * @return string
59
     */
60
    public function getMatchingRoute(): string;
61
}
62