for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yarak\Exceptions;
use Exception;
class FileNotFound extends Exception
{
/**
* The services file can not be resolved.
*
* @param string $additional
* @return static
*/
public static function servicesFileNotFound($additional = '')
return new static(
'The services file could not be found at app/config/services.php. '.
$additional
);
}