Skip to content

Commit

Permalink
Merge pull request #1311 from ruudk/symfony-6.3
Browse files Browse the repository at this point in the history
Use `#[AsCommand]` attribute on commands
  • Loading branch information
makasim authored Oct 22, 2023
2 parents 1e68971 + 774ccdf commit d26f091
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.2'
coverage: none
extensions: mongodb, redis, :xdebug
ini-values: memory_limit=2048M
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=7.4
ARG PHP_VERSION=8.2
FROM makasim/nginx-php-fpm:${PHP_VERSION}-all-exts

ARG PHP_VERSION
Expand Down
6 changes: 4 additions & 2 deletions pkg/enqueue/Symfony/Client/ConsumeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,20 @@
use Interop\Queue\Processor;
use Psr\Container\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

#[AsCommand('enqueue:consume')]
class ConsumeCommand extends Command
{
use ChooseLoggerCommandTrait;
use LimitsExtensionsCommandTrait;
use SetupBrokerExtensionCommandTrait;
use QueueConsumerOptionsCommandTrait;
use ChooseLoggerCommandTrait;
use SetupBrokerExtensionCommandTrait;

protected static $defaultName = 'enqueue:consume';

Expand Down
2 changes: 2 additions & 0 deletions pkg/enqueue/Symfony/Client/ProduceCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
use Enqueue\Client\ProducerInterface;
use Psr\Container\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

#[AsCommand('enqueue:produce')]
class ProduceCommand extends Command
{
protected static $defaultName = 'enqueue:produce';
Expand Down
2 changes: 2 additions & 0 deletions pkg/enqueue/Symfony/Client/RoutesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
use Enqueue\Client\Route;
use Psr\Container\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Helper\Table;
use Symfony\Component\Console\Helper\TableSeparator;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

#[AsCommand('enqueue:routes')]
class RoutesCommand extends Command
{
protected static $defaultName = 'enqueue:routes';
Expand Down
2 changes: 2 additions & 0 deletions pkg/enqueue/Symfony/Client/SetupBrokerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
use Enqueue\Client\DriverInterface;
use Psr\Container\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Logger\ConsoleLogger;
use Symfony\Component\Console\Output\OutputInterface;

#[AsCommand('enqueue:setup-broker')]
class SetupBrokerCommand extends Command
{
protected static $defaultName = 'enqueue:setup-broker';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,19 @@
use Enqueue\ProcessorRegistryInterface;
use Psr\Container\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

#[AsCommand('enqueue:transport:consume')]
class ConfigurableConsumeCommand extends Command
{
use ChooseLoggerCommandTrait;
use LimitsExtensionsCommandTrait;
use QueueConsumerOptionsCommandTrait;
use ChooseLoggerCommandTrait;

protected static $defaultName = 'enqueue:transport:consume';

Expand Down
4 changes: 3 additions & 1 deletion pkg/enqueue/Symfony/Consumption/ConsumeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@
use Enqueue\Consumption\QueueConsumerInterface;
use Psr\Container\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

#[AsCommand('enqueue:transport:consume')]
class ConsumeCommand extends Command
{
use ChooseLoggerCommandTrait;
use LimitsExtensionsCommandTrait;
use QueueConsumerOptionsCommandTrait;
use ChooseLoggerCommandTrait;

protected static $defaultName = 'enqueue:transport:consume';

Expand Down
4 changes: 2 additions & 2 deletions pkg/sns/Tests/SnsClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function testShouldAllowGetAwsClientIfSingleClientProvided()
$awsClient = (new Sdk(['Sns' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2010-03-31',
'endpoint' => 'http://localhost',
]]))->createSns();
Expand All @@ -31,7 +31,7 @@ public function testShouldAllowGetAwsClientIfMultipleClientProvided()
$awsClient = (new Sdk(['Sns' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2010-03-31',
'endpoint' => 'http://localhost',
]]))->createMultiRegionSns();
Expand Down
4 changes: 2 additions & 2 deletions pkg/sqs/Tests/SqsClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function testShouldAllowGetAwsClientIfSingleClientProvided()
$awsClient = (new Sdk(['Sqs' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2012-11-05',
'endpoint' => 'http://localhost',
]]))->createSqs();
Expand All @@ -31,7 +31,7 @@ public function testShouldAllowGetAwsClientIfMultipleClientProvided()
$awsClient = (new Sdk(['Sqs' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2012-11-05',
'endpoint' => 'http://localhost',
]]))->createMultiRegionSqs();
Expand Down

0 comments on commit d26f091

Please sign in to comment.