Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
opt
/
cpanel
/
ea-wappspector
/
src
/
Filename :
DIContainer.php
back
Copy
<?php namespace Plesk\Wappspector; use DI\Container; use DI\ContainerBuilder; use Exception; class DIContainer { /** * @throws Exception */ public static function build(): Container { $containerBuilder = new ContainerBuilder(); $containerBuilder->addDefinitions(__DIR__ . '/container.php'); return $containerBuilder->build(); } }