LazyRecord\Inflector::camelize PHP Method

camelize() public method

Returns the given lower_case_and_underscored_word as a CamelCased word.
public camelize ( $lowerCaseAndUnderscoredWord ) : string
return string Camelized word. LikeThis.
    public function camelize($lowerCaseAndUnderscoredWord)
    {
        $_this =& self::getInstance();
        if (!($result = $_this->_cache(__FUNCTION__, $lowerCaseAndUnderscoredWord))) {
            $result = str_replace(' ', '', self::humanize($lowerCaseAndUnderscoredWord));
            $_this->_cache(__FUNCTION__, $lowerCaseAndUnderscoredWord, $result);
        }
        return $result;
    }