framework/src/PHPNative/Framework/src/Component/ComponentCollection.php
2024-09-23 13:10:12 +02:00

15 lines
236 B
PHP

<?php
namespace PHPNative\Framework\Component;
use PHPNative\Core\TypedCollection;
#[Singleton]
class ComponentCollection extends TypedCollection
{
protected function type(): string
{
return Component::class;
}
}