| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | class Departament implements Unit |
||
| 27 | { |
||
| 28 | use Axessors; |
||
| 29 | |||
| 30 | /** @var string departament name */ |
||
| 31 | private $name; #> +axs string |
||
| 32 | /** @var Employee[] departament employees */ |
||
| 33 | private $employees = []; #> +axs Array[Employee] |
||
| 34 | |||
| 35 | public function __construct(string $name) |
||
| 36 | { |
||
| 37 | $this->name = $name; |
||
| 38 | } |
||
| 39 | } |