for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Habemus\Exception;
class InvalidDefinitionException extends ContainerException
{
public static function unavailable($name): self
return new self(
sprintf(
"The definition of type (%s) is invalid or unavailable.",
$name
)
);
}