for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gravatalonga\Container;
use Exception;
use Psr\Container\NotFoundExceptionInterface;
final class NotFoundContainerException extends Exception implements NotFoundExceptionInterface
{
public static function entryNotFound(string $entry): NotFoundContainerException
return new self(sprintf('Entry %s not found', $entry));
}