- Ignore most method of ControllerTrait
This commit is contained in:
parent
fd51903a8a
commit
91ddd4d64c
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
namespace Lean\Console\Lib;
|
namespace Lean\Console\Lib;
|
||||||
|
|
||||||
|
use Notes\Attribute\Ignore;
|
||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
|
|
||||||
use Storage\Session;
|
use Storage\Session;
|
||||||
|
@ -21,12 +22,14 @@ trait ConsoleControllerTrait
|
||||||
|
|
||||||
protected ContainerInterface $container;
|
protected ContainerInterface $container;
|
||||||
|
|
||||||
|
#[Ignore]
|
||||||
public function __construct(? Picea\Picea $picea, Session $session, ContainerInterface $container) {
|
public function __construct(? Picea\Picea $picea, Session $session, ContainerInterface $container) {
|
||||||
$this->picea = $picea;
|
$this->picea = $picea;
|
||||||
$this->session = $session;
|
$this->session = $session;
|
||||||
$this->container = $container;
|
$this->container = $container;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[Ignore]
|
||||||
public function version() : string
|
public function version() : string
|
||||||
{
|
{
|
||||||
$version = iterator_to_array(
|
$version = iterator_to_array(
|
||||||
|
|
Loading…
Reference in New Issue