| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | #[Attribute(Attribute::TARGET_METHOD)] |
||
| 22 | final class Autowire |
||
| 23 | { |
||
| 24 | private array $services = []; |
||
| 25 | |||
| 26 | public function __construct(...$services) |
||
| 27 | { |
||
| 28 | foreach ($services as $service) { |
||
| 29 | $this->services[] = "@$service"; |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | public function services(): array |
||
| 36 | } |
||
| 37 | } |
||
| 38 |