Skip to content

Commit 30eb504

Browse files
Upgrade docker compose
1 parent b410c71 commit 30eb504

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
main:
1010
runs-on: ubuntu-latest
1111
env:
12-
DOCKER_COMPOSE_VERSION: 1.29.2
12+
DOCKER_COMPOSE_VERSION: 2.30.3
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:

src/Cli/Commands/EmailProcessorCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
class EmailProcessorCommand extends Command
1212
{
13-
public function __construct(private QueueProcessor $queueProcessor,
14-
private EmailTaskProcessor $emailTaskProcessor)
13+
public function __construct(private readonly QueueProcessor $queueProcessor,
14+
private readonly EmailTaskProcessor $emailTaskProcessor)
1515
{
1616
parent::__construct();
1717
}

src/Repositories/CommandRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class CommandRepository extends MysqlRepository
1212
{
13-
public const UPDATABLE_COLUMNS_TYPES = [
13+
public const array UPDATABLE_COLUMNS_TYPES = [
1414
'name' => 's',
1515
'description' => 's',
1616
'more_info_url' => 's',

0 commit comments

Comments
 (0)