ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.Term.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23class Term
24{
25 public function __construct(
26 protected int $term_id,
27 protected int $user_id,
28 protected int $glo_id,
29 protected int $box_nr,
30 protected ?string $last_access = null
31 ) {
32
33 }
34
35 public function getTermId(): int
36 {
37 return $this->term_id;
38 }
39
40 public function getUserId(): int
41 {
42 return $this->user_id;
43 }
44
45 public function getGloId(): int
46 {
47 return $this->glo_id;
48 }
49
50 public function getBoxNr(): int
51 {
52 return $this->box_nr;
53 }
54
55 public function getLastAccess(): ?string
56 {
57 return $this->last_access;
58 }
59}
__construct(protected int $term_id, protected int $user_id, protected int $glo_id, protected int $box_nr, protected ?string $last_access=null)
Definition: class.Term.php:25