Skip to content

Commit

Permalink
PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rimi-itk committed Sep 24, 2024
1 parent 016db25 commit e0921f7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.1' ]
php: [ '8.3' ]
name: Validate composer (${{ matrix.php}})
steps:
- name: Checkout
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.1' ]
php: [ '8.3' ]
name: Unit tests (${{ matrix.php}})
steps:
- name: Checkout
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
# strategy:
# fail-fast: false
# matrix:
# php: [ '8.1' ]
# php: [ '8.3' ]
# steps:
# - name: Checkout
# uses: actions/checkout@v2
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.1' ]
php: [ '8.3' ]
name: PHP Coding Standards Fixer (${{ matrix.php }})
steps:
- name: Checkout
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.1' ]
php: [ '8.3' ]
name: Twigcs (${{ matrix.php }})
steps:
- name: Checkout
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.1' ]
php: [ '8.3' ]
name: Check translations are up to date (${{ matrix.php}})
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ networks:

services:
phpfpm:
image: itkdev/php8.1-fpm:alpine
image: itkdev/php8.3-fpm:alpine
restart: unless-stopped
networks:
- app
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
#- ENCRYPT=1 # Uncomment to enable database encryption.

phpfpm:
image: itkdev/php8.1-fpm:latest
image: itkdev/php8.3-fpm:latest
networks:
- app
extra_hosts:
Expand Down
2 changes: 1 addition & 1 deletion src/Service/PartyHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ private function setCanReceiveDigitalPost(array $parties): array
try {
$identification = $party->getIdentification();
$canReceiveDigitalPost = $this->digitalPoster->canReceive(
SF1601::FORESPOERG_TYPE_DIGITAL_POST,
'digitalpost',
$identification->getIdentifier()
);
$party->setCanReceiveDigitalPost($canReceiveDigitalPost);
Expand Down

0 comments on commit e0921f7

Please sign in to comment.