chore: fixes test:unit

This commit is contained in:
nuno maduro
2026-04-10 12:15:00 +01:00
parent 8a83a1a1a9
commit e766825f5b
8 changed files with 19 additions and 17 deletions

View File

@ -6,6 +6,4 @@ namespace Tests\Fixtures\Arch\ToUseTrait\HasInheritedTrait;
use Tests\Fixtures\Arch\ToUseTrait\HasTrait\ParentClassWithTrait;
class ChildClassExtendingParent extends ParentClassWithTrait
{
}
class ChildClassExtendingParent extends ParentClassWithTrait {}

View File

@ -10,4 +10,4 @@ trait NestedTrait
{
return 'nested';
}
}
}

View File

@ -7,4 +7,4 @@ namespace Tests\Fixtures\Arch\ToUseTrait\HasTrait;
class ParentClassWithTrait
{
use TestTraitForInheritance;
}
}

View File

@ -14,4 +14,4 @@ trait TestTraitForInheritance
{
return 'test';
}
}
}