Recca0120\Terminal\Console\Commands\Find::getOptions PHP Метод

getOptions() защищенный Метод

Get the console command options.
protected getOptions ( ) : array
Результат array
    protected function getOptions()
    {
        return [['type', 'T', InputOption::VALUE_OPTIONAL, 'File is of type c: [f, d]'], ['name', 'N', InputOption::VALUE_OPTIONAL, 'Base of file name (the path with the leading directories removed) matches shell pattern pattern.  The metacharacters (`*\', `?\', and `[]\') match a `.\' at  the  start of  the  base name (this is a change in findutils-4.2.2; see section STANDARDS CONFORMANCE below).  To ignore a directory and the files under it, use -prune; see an example in the description of -path.  Braces are not recognised as being special, despite the fact that some shells including Bash imbue braces with a special meaning in shell patterns.  The filename matching is performed with the use of the fnmatch(3) library function.   Don\'t forget to enclose the pattern in quotes in order to protect it from expansion by the shell.'], ['maxdepth', 'M', InputOption::VALUE_OPTIONAL, '-maxdepth alias -M'], ['delete', 'd', InputOption::VALUE_OPTIONAL, 'Delete files; true if removal succeeded.  If the removal failed, an error message is issued.  If -delete fails, find\'s exit status will be nonzervagranto (when it  eventually exits).  Use of -delete automatically turns on the -depth option.']];
    }