ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
Meta.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 class 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