Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
Permission.php
Go to the documentation of this file.
1<?php
2
4
5use Attribute;
8
21#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
23
24 public string|int|null $name;
25
26 public ?int $level;
27
33 public function __construct(string|int $name, ?int $level = 0) {
34 $this->name = $name;
35 $this->level = $level;
36 }
37
38
39}
Ubiquity\annotations$BaseAnnotationTrait This class is part of Ubiquity.
Ubiquity\attributes$BaseAttribute This class is part of Ubiquity.
__construct(string|int $name, ?int $level=0)
Permission constructor.