Files
compose-manager/app/src/Wrapper/Application.php
2024-08-22 19:49:44 -04:00

20 lines
462 B
PHP

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