for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BrightComponents\Services\Exceptions;
use Exception;
class InvalidNamespaceException extends Exception
{
public static function missingServiceNamespace()
return new static('A Service namespace must be defined in configuration.');
}