for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Paysera\Bundle\ApiBundle\Service\Validation;
class CamelCaseToSnakeCaseConverter implements PropertyPathConverterInterface
{
public function convert($path)
return ltrim(
mb_strtolower(
preg_replace(
'/[A-Z]/u',
'_$0',
$path
)
),
'_'
);
}