mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2024-12-03 23:10:14 -08:00
12 lines
208 B
PHP
12 lines
208 B
PHP
<?php
|
|
|
|
namespace SpacesAPI;
|
|
|
|
trait StringFunctions
|
|
{
|
|
public function pascalCaseToCamelCase(string $name): string
|
|
{
|
|
return strtolower(preg_replace("/([a-z])([A-Z])/", "$1_$2", $name));
|
|
}
|
|
}
|