Version 3 release. Major re-write

This commit is contained in:
David Wakelin 2021-08-09 17:33:50 +01:00
parent 127ad7e14a
commit f9b49002c7
1507 changed files with 6592 additions and 94204 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace SpacesAPI;
trait StringFunctions
{
public function pascalCaseToCamelCase(string $name): string
{
return strtolower(preg_replace("/([a-z])([A-Z])/", "$1_$2", $name));
}
}