| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class Institution |
||
| 8 | { |
||
| 9 | private string $id; |
||
| 10 | private string $name; |
||
| 11 | |||
| 12 | public function __construct( |
||
| 13 | string $id, |
||
| 14 | string $name |
||
| 15 | ) { |
||
| 16 | $this->id = $id; |
||
| 17 | $this->name = $name; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getId(): string |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getName(): string |
||
| 28 | } |
||
| 29 | } |
||
| 30 |