Interface InflectorInterface
Inflector interface used to convert the casing of words
Methods summary
public
string
|
#
snake( string $word )
Converts strings from camel case to snake case (e.g. CamelCase
camel_case).
Converts strings from camel case to snake case (e.g. CamelCase
camel_case).
Parameters
- $word
string $word Word to convert to snake case
Returns
string
|
public
string
|
#
camel( string $word )
Converts strings from snake_case to upper CamelCase
Converts strings from snake_case to upper CamelCase
Parameters
- $word
string $word Value to convert into upper CamelCase
Returns
string
|