1 | <?php |
||
14 | final class Permalink |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $relativeFilePath; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $relativeUrlPath; |
||
25 | |||
26 | 5 | public function __construct(string $relativeFilePath, string $relativeUrlPath) |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 1 | public function relativeFilePath() : string |
|
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function relativeUrlPath() : string |
||
47 | } |
||
48 |