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