ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Meta.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23class Meta
24{
25 public function __construct(
26 private readonly int $sorting,
27 private readonly Edit $lastModification,
28 private readonly Edit $creation
29 ) {
30 }
31
32 public function sorting(): int
33 {
34 return $this->sorting;
35 }
36
37 public function lastModification(): Edit
38 {
39 return $this->lastModification;
40 }
41
42 public function creation(): Edit
43 {
44 return $this->creation;
45 }
46}
__construct(private readonly int $sorting, private readonly Edit $lastModification, private readonly Edit $creation)
Definition: Meta.php:25