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.
phpcommandline/src/CommandLine/Argument/IArgumentValueDescription.php

15 lines
322 B
PHP

<?php
namespace jrosset\CommandLine\Argument;
/**
* Interface for argument expected value description
*/
interface IArgumentValueDescription {
/**
* The expected value description in help
*
* @return string The expected value description
*/
public function getValueDescription (): string;
}