This commit is contained in:
2025-09-13 01:22:15 +08:00
parent 155e05fd6d
commit 1a4b8551a0
674 changed files with 146276 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<?php
/**
*
* @authorllbjj
* @DateTime2022/5/7 21:19
* @Description
*
*/
namespace Application\Service;
use Application\Common\Container;
use Interop\Container\ContainerInterface;
class BaseService
{
protected $container;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
}
public function LocalService(){
return new Container($this->container);
}
}