You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
383 B
PHP
19 lines
383 B
PHP
<?php
|
|
|
|
namespace jrosset\CliProgram\AutoPrefix;
|
|
|
|
use Arrayy\Collection\AbstractCollection;
|
|
|
|
/**
|
|
* A list of managers of commands auto prefix
|
|
*
|
|
* @extends AbstractCollection<IAutoPrefixManager>
|
|
*/
|
|
class AutoPrefixManagersList extends AbstractCollection {
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getType (): string {
|
|
return IAutoPrefixManager::class;
|
|
}
|
|
} |