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
382 B
PHP
19 lines
382 B
PHP
<?php
|
|
|
|
namespace jrosset\CliProgram\AutoDiscovery;
|
|
|
|
use Arrayy\Collection\AbstractCollection;
|
|
|
|
/**
|
|
* A list of command auto discovery spots
|
|
*
|
|
* @extends AbstractCollection<IAutoDiscoverySpot>
|
|
*/
|
|
class AutoDiscoverySpotsList extends AbstractCollection {
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getType (): string {
|
|
return IAutoDiscoverySpot::class;
|
|
}
|
|
} |