Log commands
This commit is contained in:
14
cli/common/Alias/Command.php
Normal file
14
cli/common/Alias/Command.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
namespace Incoviba\Common\Alias;
|
||||
|
||||
use Psr\Http\Client\ClientInterface;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Symfony\Component\Console;
|
||||
|
||||
class Command extends Console\Command\Command
|
||||
{
|
||||
public function __construct(protected ClientInterface $client, protected LoggerInterface $logger, string $name = null)
|
||||
{
|
||||
parent::__construct($name);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user