Fixes relating to PHP composer updates.

This commit is contained in:
Buster Neece 2023-05-01 10:28:52 -05:00
parent 88d6d4db38
commit abdafabc1f
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
2 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,15 @@
parameters:
ignoreErrors:
-
message: "#^Method App\\\\Entity\\\\Analytics\\:\\:getMomentInStationTimeZone\\(\\) should return Carbon\\\\CarbonImmutable but returns Carbon\\\\Carbon\\|Carbon\\\\CarbonImmutable\\.$#"
count: 1
path: src/Entity/Analytics.php
-
message: "#^Property App\\\\Entity\\\\Analytics\\:\\:\\$moment \\(Carbon\\\\CarbonImmutable\\) does not accept Carbon\\\\Carbon\\|Carbon\\\\CarbonImmutable\\.$#"
count: 1
path: src/Entity/Analytics.php
-
message: "#^Parameter \\#3 \\$criteria of method Doctrine\\\\DBAL\\\\Connection\\:\\:update\\(\\) expects array\\<string, mixed\\>, array\\<int, int\\> given\\.$#"
count: 1

View File

@ -258,8 +258,10 @@ final class ListAction
if ($isSearch) {
if ('special:unprocessable' === $searchPhrase) {
/** @var string[] $files */
$files = array_keys($unprocessableMedia);
} else {
/** @var string[] $files */
$files = array_keys($mediaInDir);
}
} else {