App\Libraries\Utils::toCamelCase PHP Method

toCamelCase() public static method

public static toCamelCase ( $string )
    public static function toCamelCase($string)
    {
        return lcfirst(static::toClassCase($string));
    }

Usage Example

Example #1
0
 public static function getEntityName($entityType)
 {
     return ucwords(Utils::toCamelCase($entityType));
 }