Log commands

This commit is contained in:
2023-11-25 21:38:00 -03:00
parent ec4b16b2af
commit df679b2a1a
9 changed files with 39 additions and 57 deletions

View 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);
}
}