Initial commit

This commit is contained in:
2025-08-30 23:12:22 +02:00
commit c63206aa71
16 changed files with 923 additions and 0 deletions

12
tests/classes/ClassA.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
#[NoccyLabs\Hotwire\Attributes\AsService]
class ClassA
{
public function __construct(
public readonly ClassB $classB,
public readonly ClassC $classC,
)
{
}
}