20 lines
454 B
PHP
20 lines
454 B
PHP
![]() |
<?php
|
||
|
namespace ProVM\Extend;
|
||
|
|
||
|
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): Console\Application
|
||
|
{
|
||
|
$this->container = $container;
|
||
|
return $this;
|
||
|
}
|
||
|
}
|