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
471 B
PHP
19 lines
471 B
PHP
<?php
|
|
/**
|
|
* Déclaration de l'interface CommandLine\Argument\IArgumentValueDescription
|
|
*/
|
|
namespace CommandLine\Argument;
|
|
|
|
/**
|
|
* Interface à implementer par les arguments qui souhaitent détailler la valeur attendue
|
|
*
|
|
* @package CommandLine\Argument
|
|
*/
|
|
interface IArgumentValueDescription {
|
|
/**
|
|
* La description de la valeur de d'argument.
|
|
*
|
|
* @return string La description.
|
|
*/
|
|
public function getValueDescription();
|
|
} |