for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\Exception;
class MissingEnvironmentVariableException extends AenthillException
{
public static function missingEnv(string $variableName): self
return new self("Missing environement variable '$variableName'");
}