Open Journal Systems
3.3.0
|
Public Member Functions | |
camel ($word) | |
snake ($word) | |
Inflector interface used to convert the casing of words
Definition at line 8 of file InflectorInterface.php.
Guzzle\Inflection\InflectorInterface::camel | ( | $word | ) |
Converts strings from snake_case to upper CamelCase
string | $word | Value to convert into upper CamelCase |
Implemented in Guzzle\Inflection\PreComputedInflector, Guzzle\Inflection\MemoizingInflector, and Guzzle\Inflection\Inflector.
Guzzle\Inflection\InflectorInterface::snake | ( | $word | ) |
Converts strings from camel case to snake case (e.g. CamelCase camel_case).
string | $word | Word to convert to snake case |
Implemented in Guzzle\Inflection\PreComputedInflector, Guzzle\Inflection\MemoizingInflector, and Guzzle\Inflection\Inflector.