Skip to content

Update all non-major dependencies #3296

Update all non-major dependencies

Update all non-major dependencies #3296

Triggered via pull request February 18, 2025 12:09
Status Failure
Total duration 10m 53s
Artifacts

continuous-integration.yml

on: pull_request
Generate job matrix
9s
Generate job matrix
Matrix: Check Backwards Compatibility
Matrix: Composer Require Checker
Matrix: QA Checks
Fit to window
Zoom out
Zoom in

Annotations

10 errors and 3 warnings
MissingOverrideAttribute: src/Changes.php#L92
src/Changes.php:92:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\Changes::getiterator should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/Changes.php#L107
src/Changes.php:107:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\Changes::count should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/Command/AssertBackwardsCompatible.php#L52
src/Command/AssertBackwardsCompatible.php:52:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\Command\AssertBackwardsCompatible::configure should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/Command/AssertBackwardsCompatible.php#L111
src/Command/AssertBackwardsCompatible.php:111:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\Command\AssertBackwardsCompatible::execute should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/CompareClasses.php#L26
src/CompareClasses.php:26:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\CompareClasses::__invoke should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/Configuration/ParseXmlConfigurationFile.php#L23
src/Configuration/ParseXmlConfigurationFile.php:23:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\Configuration\ParseXmlConfigurationFile::parse should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/DetectChanges/BCBreak/ClassBased/AncestorRemoved.php#L21
src/DetectChanges/BCBreak/ClassBased/AncestorRemoved.php:21:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\DetectChanges\BCBreak\ClassBased\AncestorRemoved::__invoke should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/DetectChanges/BCBreak/ClassBased/ClassBecameAbstract.php#L19
src/DetectChanges/BCBreak/ClassBased/ClassBecameAbstract.php:19:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\DetectChanges\BCBreak\ClassBased\ClassBecameAbstract::__invoke should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/DetectChanges/BCBreak/ClassBased/ClassBecameFinal.php#L14
src/DetectChanges/BCBreak/ClassBased/ClassBecameFinal.php:14:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\DetectChanges\BCBreak\ClassBased\ClassBecameFinal::__invoke should have the "Override" attribute (see https://psalm.dev/358)
MissingOverrideAttribute: src/DetectChanges/BCBreak/ClassBased/ClassBecameInterface.php#L19
src/DetectChanges/BCBreak/ClassBased/ClassBecameInterface.php:19:5: MissingOverrideAttribute: Method Roave\BackwardCompatibility\DetectChanges\BCBreak\ClassBased\ClassBecameInterface::__invoke should have the "Override" attribute (see https://psalm.dev/358)
QA Checks (Infection (PCOV) [8.2, locked], ubuntu-latest, laminas/laminas-continuous-integration-...: src/Change.php#L30
Escaped Mutant for Mutator "TrueValue": @@ @@ { } /** @psalm-pure */ - public static function added(string $description, bool $isBcBreak = true): self + public static function added(string $description, bool $isBcBreak = false): self { return new self(self::ADDED, $description, $isBcBreak); }
QA Checks (Infection (PCOV) [8.2, locked], ubuntu-latest, laminas/laminas-continuous-integration-...: src/Change.php#L36
Escaped Mutant for Mutator "TrueValue": @@ @@ return new self(self::ADDED, $description, $isBcBreak); } /** @psalm-pure */ - public static function changed(string $description, bool $isBcBreak = true): self + public static function changed(string $description, bool $isBcBreak = false): self { return new self(self::CHANGED, $description, $isBcBreak); }
QA Checks (Infection (PCOV) [8.2, locked], ubuntu-latest, laminas/laminas-continuous-integration-...: src/Change.php#L42
Escaped Mutant for Mutator "TrueValue": @@ @@ return new self(self::CHANGED, $description, $isBcBreak); } /** @psalm-pure */ - public static function removed(string $description, bool $isBcBreak = true): self + public static function removed(string $description, bool $isBcBreak = false): self { return new self(self::REMOVED, $description, $isBcBreak); }