메소드 |
설명 |
|
camelize ( string $string ) : string |
Returns a dash-cased string into a camelCased string |
|
computeFuncParams ( ReflectionFunctionAbstract $reflection, array $args, array $options, boolean $needTagInDocComment = true ) : array |
Creates an array of parameters according to the function definition |
|
dashized ( string $string ) : string |
Returns a camelCased string into a dash-cased string |
|
filterFiles ( array $args, boolean $allowWildcards = true ) : array |
Extracts files from an array of args |
|
find ( string $filename, array $dirs = [] ) : string |
Finds the first file that match the filename in any of
the specified directories. |
|
get ( array $array, string $key, mixed $default = null ) : mixed |
Returns the value from $key in $array or $default |
|
join ( string $path1, string $path2 ) : string |
Joins paths together |
|
mkdir ( string $dir, octal $mode = 511 ) |
Creates a directory recursively |
|
pipedIn ( ) : string |
Returns piped in data |
|
touch ( string $filename, string $content = '' ) |
Creates a file and its directory |
|