Container创建的实例可以依赖注入 webman2.2
$log_service = Container::make(LogService::class, [$path, $name]);
返回实例并没有赋值
示例class
```php
class LogService
{
public $path;
public $name;
public function __construct($path, $name){
$this->path = $path;
$this->name = $name;
}
public function dispatch(): array{
return [];
}
}
```