Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
8 | trait WithTypeDeclaration |
||
9 | { |
||
10 | protected TypeDeclaration $type; |
||
11 | |||
12 | /** @see HasType::hasTypeDeclaration() for more details */ |
||
13 | 9 | public function hasTypeDeclaration(): bool |
|
16 | } |
||
17 | |||
18 | /** @see HasType::type() for more details */ |
||
19 | 13 | public function type(): TypeDeclaration |
|
24 |