Bristol SU Support Package
Evaluation.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
11 interface Evaluation extends Arrayable, Jsonable
12 {
13 
20  public function setVisible(bool $visible);
21 
28  public function setMandatory(bool $mandatory);
29 
36  public function setActive(bool $active);
37 
44  public function setComplete(bool $complete);
45 
51  public function visible(): bool;
52 
58  public function mandatory(): bool;
59 
65  public function active(): bool;
66 
72  public function complete(): bool;
73 }