Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Remove unnecessary todo in class docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
kachayev committed Feb 7, 2011
1 parent 6694397 commit f986c67
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions src/Getopt.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,43 +89,8 @@
* @version Release: @package_version@
* @since Class available since Release 0.6.0
*
* @todo [Done] Handle params with multiple values, e.g. --colors=red,green,blue
* Set value of parameter to the array of values. Allow user to specify
* the separator with Zend_Console_Getopt::CONFIG_PARAMETER_SEPARATOR.
* If this config value is null or empty string, do not split values
* into arrays. Default separator is comma (',').
*
* @todo Analyze what to do in case, when Getopt::CONFIG_PARAMETER_SEPARATOR not empty
* and Getopt::CONFIG_CUMULATIVE_PARAMETERS is true - do we have to return array
* of arrays, or just merge all values in one list?
*
* @todo [Done] Handle params with multiple values specified with separate options
* e.g. --colors red --colors green --colors blue should give one
* option with an array(red, green, blue).
* Enable with Zend_Console_Getopt::CONFIG_CUMULATIVE_PARAMETERS.
* Default is that subsequent options overwrite the parameter value.
*
* @todo [Done] Handle flags occurring multiple times, e.g. -v -v -v
* Set value of the option's parameter to the integer count of instances
* instead of a boolean.
* Enable with Zend_Console_Getopt::CONFIG_CUMULATIVE_FLAGS.
* Default is that the value is simply boolean true regardless of
* how many instances of the flag appear.
*
* @todo Handle flags that implicitly print usage message, e.g. --help
*
* @todo [Done] Handle freeform options, e.g. --set-variable
* Enable with Zend_Console_Getopt::CONFIG_FREEFORM_FLAGS
* All flag-like syntax is recognized, no flag generates an exception.
*
* @todo [Done] Handle numeric options, e.g. -1, -2, -3, -1000
* Enable with Zend_Console_Getopt::CONFIG_NUMERIC_FLAGS
* The rule must specify a named flag and the '#' symbol as the
* parameter type. e.g., 'lines=#'
*
* @todo Clerify situation when user will put several # sign. For ex.,
* lines=#, limit=# (now the system will overwrite first param by last one)
*
* @todo Enable user to specify header and footer content in the help message.
*
* @todo Feature request to handle option interdependencies.
Expand Down

0 comments on commit f986c67

Please sign in to comment.