ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
CriteriaFile.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 
8 {
9  public function __construct(
10  protected int $ass_id,
11  protected int $giver_id,
12  protected int $peer_id,
13  protected int $criteria_id,
14  protected string $rid,
15  protected string $title
16  ) {
17  }
18 
19  public function getAssId(): int
20  {
21  return $this->ass_id;
22  }
23 
24  public function getGiverId(): int
25  {
26  return $this->giver_id;
27  }
28 
29  public function getPeerId(): int
30  {
31  return $this->peer_id;
32  }
33 
34  public function getCriteriaId(): int
35  {
36  return $this->criteria_id;
37  }
38 
39  public function getRid(): string
40  {
41  return $this->rid;
42  }
43 
44  public function getTitle(): string
45  {
46  return $this->title;
47  }
48 }
__construct(protected int $ass_id, protected int $giver_id, protected int $peer_id, protected int $criteria_id, protected string $rid, protected string $title)
Definition: CriteriaFile.php:9