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

11
tests/classes/ClassB.php Normal file
View File

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