ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
Step.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23class Step
24{
25 public function __construct(
26 protected int $id,
27 protected int $tour_id,
28 protected int $order_nr,
29 protected StepType $type,
30 protected string $element_id
31 ) {
32 }
33
34 public function getId(): int
35 {
36 return $this->id;
37 }
38
39 public function getTourId(): int
40 {
41 return $this->tour_id;
42 }
43
44 public function getOrderNr(): int
45 {
46 return $this->order_nr;
47 }
48
49 public function getType(): StepType
50 {
51 return $this->type;
52 }
53
54 public function getElementId(): string
55 {
56 return $this->element_id;
57 }
58}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(protected int $id, protected int $tour_id, protected int $order_nr, protected StepType $type, protected string $element_id)
Definition: Step.php:25