1 | <?php |
||
16 | final class PostFile extends File |
||
17 | { |
||
18 | /** |
||
19 | * @var DateTimeInterface |
||
20 | */ |
||
21 | private $date; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $filenameWithoutDate; |
||
27 | |||
28 | public function __construct(SplFileInfo $fileInfo, string $relativeSource) |
||
34 | |||
35 | public function getDate() : DateTimeInterface |
||
39 | |||
40 | public function getDateInFormat(string $format) : string |
||
44 | |||
45 | public function getFilenameWithoutDate() : string |
||
49 | } |
||
50 |