Files
remote_ip/app/common/Wrapper/App.php
2023-06-16 21:44:35 -04:00

20 lines
435 B
PHP

<?php
namespace ProVM\Wrapper;
use Psr\Container\ContainerInterface;
use Symfony\Component\Console\Application;
class App extends Application
{
protected ContainerInterface $container;
public function getContainer(): ContainerInterface
{
return $this->container;
}
public function setContainer(ContainerInterface $container): App
{
$this->container = $container;
return $this;
}
}