15 lines
236 B
PHP
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;
|
|
}
|
|
} |