ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ImportantPage.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27{
28 protected int $id;
29 protected int $order;
30 protected int $indent;
31
32 public function __construct(
33 int $id,
34 int $order,
35 int $indent
36 ) {
37 $this->id = $id;
38 $this->order = $order;
39 $this->indent = $indent;
40 }
41
42 public function getId(): int
43 {
44 return $this->id;
45 }
46 public function getOrder(): int
47 {
48 return $this->order;
49 }
50 public function getIndent(): int
51 {
52 return $this->indent;
53 }
54}
__construct(int $id, int $order, int $indent)