for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Propaganistas\LaravelPhone\Exceptions;
class CountryCodeException extends \Exception
{
/**
* Invalid country code static constructor.
*
* @param string $country
* @return static
*/
public static function invalid($country)
return new static('Invalid country code "' . $country . '".');
}