Total Complexity | 6 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
27 | class PathHelper { |
||
28 | /** @var Server */ |
||
29 | private $server; |
||
30 | |||
31 | /** |
||
32 | * PathHelper constructor. |
||
33 | * |
||
34 | * @param Server $server |
||
35 | */ |
||
36 | public function __construct(Server $server) { |
||
37 | $this->server = $server; |
||
38 | } |
||
39 | |||
40 | public function getPathFromUri($uri): ?string { |
||
48 | } |
||
49 | } |
||
51 |