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.
PhpCliProgram/src/CliProgram/CommandCall/CommandCallsList.php

19 lines
350 B
PHP

<?php
namespace jrosset\CliProgram\CommandCall;
use Arrayy\Collection\AbstractCollection;
/**
* A list of calls to a command
*
* @extends AbstractCollection<CommandCall>
*/
class CommandCallsList extends AbstractCollection {
/**
* @inheritDoc
*/
public function getType (): string {
return CommandCall::class;
}
}