ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
CriteriaFile.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 public function __construct(
26 protected int $ass_id,
27 protected int $giver_id,
28 protected int $peer_id,
29 protected int $criteria_id,
30 protected string $rid,
31 protected string $title
32 ) {
33 }
34
35 public function getAssId(): int
36 {
37 return $this->ass_id;
38 }
39
40 public function getGiverId(): int
41 {
42 return $this->giver_id;
43 }
44
45 public function getPeerId(): int
46 {
47 return $this->peer_id;
48 }
49
50 public function getCriteriaId(): int
51 {
52 return $this->criteria_id;
53 }
54
55 public function getRid(): string
56 {
57 return $this->rid;
58 }
59
60 public function getTitle(): string
61 {
62 return $this->title;
63 }
64}
__construct(protected int $ass_id, protected int $giver_id, protected int $peer_id, protected int $criteria_id, protected string $rid, protected string $title)