add worker container

This commit is contained in:
sunxyw
2022-04-04 20:51:26 +08:00
committed by sunxyw
parent 0cd73a6304
commit 1d778fd78e
7 changed files with 878 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace ZM\Container;
use Exception;
use Psr\Container\ContainerExceptionInterface;
class EntryResolutionException extends Exception implements ContainerExceptionInterface
{
}