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