ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Dir.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27final class Dir extends Item
28{
29 public function __construct(
30 string $path_inside_zip,
31 string $title,
32 private \DateTimeImmutable $modification_date,
33 ) {
34 parent::__construct($path_inside_zip, $title);
35 }
36
37 public function getModificationDate(): \DateTimeImmutable
38 {
39 return $this->modification_date;
40 }
41
42}
__construct(string $path_inside_zip, string $title, private \DateTimeImmutable $modification_date,)
Definition: Dir.php:29
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc