for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ArjanWestdorp\Imaginary\Exceptions;
use Exception;
class InvalidConfigurationException extends Exception
{
/**
* Url not defined.
*
* @return static
*/
public static function urlNotDefined()
return new static('Url is not defined in the config.');
}
* Client not defined.
public static function clientNotDefined()
return new static('Client is not defined in the config.');