| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 13 | final class TraitDefinition extends Definition implements HasProperties, UseTraits |
||
| 14 | { |
||
| 15 | use WithProperties; |
||
| 16 | use WithTraits; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param Method[] $methods |
||
| 20 | * @param Property[] $properties |
||
| 21 | * @param Name[] $traits |
||
| 22 | */ |
||
| 23 | 38 | public function __construct( |
|
| 32 | } |
||
| 33 | |||
| 34 | 13 | public function hasProperties(): bool |
|
| 39 |