| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Qualifier extends DependencyAwareGenerator |
||
| 8 | { |
||
| 9 | private string $name; |
||
| 10 | |||
| 11 | 1 | public function __construct(string $className) |
|
| 12 | { |
||
| 13 | 1 | $this->name = $this->resolveQualifier($className); |
|
| 14 | 1 | } |
|
| 15 | |||
| 16 | 1 | public static function new(string $className) |
|
| 19 | } |
||
| 20 | |||
| 21 | 1 | public function generate(): string |
|
| 24 | } |
||
| 25 | } |
||
| 26 |