BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
htmlandpixel
Root
/
.
/
opt
/
cpanel
/
ea-wappspector
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: DIContainer.php
<?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(); } }
Save
Cancel