for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Arrilot\BitrixMigrations;
class Helpers
{
/**
* Convert a value to studly caps case.
*
* @param string $value
* @return string
*/
public static function studly($value)
$value = ucwords(str_replace(['-', '_'], ' ', $value));
return str_replace(' ', '', $value);
}