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