Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
Yuml.php
Go to the documentation of this file.
1<?php
2
4
6use Attribute;
7
15#[Attribute(Attribute::TARGET_CLASS)]
17
18 public string $color;
19 public string $note;
20
26 public function __construct(string $color, string $note) {
27 $this->color = $color;
28 $this->note = $note;
29 }
30}
Ubiquity\annotations$BaseAnnotationTrait This class is part of Ubiquity.
Ubiquity\attributes$BaseAttribute This class is part of Ubiquity.
__construct(string $color, string $note)
Yuml constructor.
Definition Yuml.php:26