20 lines
435 B
PHP
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;
|
|
}
|
|
}
|