Total Complexity | 4 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class UseModel implements UseModelInterface |
||
19 | { |
||
20 | use NameTrait; |
||
21 | use NodeTrait; |
||
22 | |||
23 | /** |
||
24 | * @var string $fullName The full name of this use statement. |
||
25 | */ |
||
26 | private $fullName; |
||
27 | |||
28 | /** |
||
29 | * @var string|null $alias The alias of this use statement. |
||
30 | */ |
||
31 | private $alias; |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function setFullName(string $fullName): void |
||
37 | { |
||
38 | $this->fullName = $fullName; |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function getFullName(): string |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function setAlias(?string $alias): void |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function getAlias(): ?string |
||
63 | } |
||
64 | } |