for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ngtfkx\Laradeck\AddressGenerator;
class Helper
{
public static function prepare($string)
$string = str_replace([' ', '-', '_'], '', mb_strtolower($string));
return $string;
}