Skip to content

Commit d209c4a

Browse files
committedNov 15, 2024·
fix phpstan
1 parent 5d3d197 commit d209c4a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

Diff for: ‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
extensions: mongodb, redis, :xdebug
2424
ini-values: memory_limit=2048M
2525

26-
- run: php ./bin/fix-symfony-version.php "5.4.*"
26+
- run: php ./bin/fix-symfony-version.php "6.2.*"
2727

2828
- uses: "ramsey/composer-install@v1"
2929

@@ -63,7 +63,7 @@ jobs:
6363
extensions: mongodb, redis, :xdebug
6464
ini-values: memory_limit=2048M
6565

66-
- run: php ./bin/fix-symfony-version.php "5.4.*"
66+
- run: php ./bin/fix-symfony-version.php "6.2.*"
6767

6868
- run: composer update --no-progress
6969

Diff for: ‎pkg/enqueue/Tests/Symfony/Consumption/ConfigurableConsumeCommandTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public function testShouldExecuteConsumptionWithSeveralCustomQueues()
204204

205205
public function testShouldExecuteConsumptionWhenProcessorImplementsQueueSubscriberInterface()
206206
{
207-
$processor = new class implements Processor, QueueSubscriberInterface {
207+
$processor = new class() implements Processor, QueueSubscriberInterface {
208208
public function process(InteropMessage $message, Context $context)
209209
{
210210
}

0 commit comments

Comments
 (0)
Please sign in to comment.