Files
oficial/cli/common/Alias/Command.php

15 lines
359 B
PHP
Raw Normal View History

2023-11-25 21:38:00 -03:00
<?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);
}
}