1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<?php
namespace Guzzle\Inflection;
/**
* Inflector interface used to convert the casing of words
*/
interface InflectorInterface
{
/**
* Converts strings from camel case to snake case (e.g. CamelCase camel_case).
*
* @param string $word Word to convert to snake case
*
* @return string
*/
public function snake($word);
/**
* Converts strings from snake_case to upper CamelCase
*
* @param string $word Value to convert into upper CamelCase
*
* @return string
*/
public function camel($word);
}
|