ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
class.Box.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
23 class 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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: class.Box.php:21
__construct(protected int $box_nr, protected int $user_id, protected int $glo_id, protected ?string $last_access=null)
Definition: class.Box.php:25