Skip to content

Commit e3a2761

Browse files
authored
Merge pull request #8067 from nextcloud/chore/bump-php-to-8.3
chore(php): bump php to 8.3
2 parents 3d2eb22 + 55d6349 commit e3a2761

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/cypress-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
node-version: [20.x]
2626
containers: [1, 2, 3]
27-
php-versions: [ '8.2' ]
27+
php-versions: [ '8.3' ]
2828
server-versions: [ 'master' ]
2929

3030
name: runner ${{ matrix.containers }}

.github/workflows/integration-federation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
php-versions: ['8.2']
32+
php-versions: ['8.3']
3333
server-versions: ['master']
3434

3535
name: php${{ matrix.php-versions }}-${{ matrix.server-versions }}

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
php-versions: ['8.2']
33+
php-versions: ['8.3']
3434
databases: ['sqlite', 'mysql', 'pgsql']
3535
server-versions: ['master']
3636

lib/Service/FileService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function extendData(Attachment $attachment) {
8383
}
8484

8585
/**
86-
* @return array
86+
* @return array|null
8787
* @throws StatusException
8888
*/
8989
private function getUploadedFile() {

lib/Service/FilesAppService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public function createFromImport(Attachment $attachment, string $content): Attac
332332
}
333333

334334
/**
335-
* @return array
335+
* @return array|null
336336
* @throws StatusException
337337
*/
338338
private function getUploadedFile() {

lib/Service/PermissionService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public function findUsers($boardId, $refresh = false) {
303303
continue;
304304
}
305305
foreach ($group->getUsers() as $user) {
306-
$users[(string)$user->getUID()] = new User($user->getUID(), $this->userManager);
306+
$users[$user->getUID()] = new User($user->getUID(), $this->userManager);
307307
}
308308
}
309309

psalm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
errorBaseline="tests/psalm-baseline.xml"
99
findUnusedBaselineEntry="true"
1010
findUnusedCode="false"
11-
phpVersion="8.2"
11+
phpVersion="8.3"
1212
>
1313
<stubs>
1414
<file name="tests/stub.phpstub" preloadClasses="true"/>

0 commit comments

Comments
 (0)