Skip to content

CI

CI #1029

Triggered via schedule January 19, 2025 00:43
Status Success
Total duration 2m 6s
Artifacts

ci.yml

on: schedule
Fit to window
Zoom out
Zoom in

Annotations

31 warnings
PHP 8.4
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
PHP 8.3: src/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L50
Escaped Mutant for Mutator "CastInt": @@ @@ throw new \InvalidArgumentException(\sprintf('Missing document manager with name "%s"', $documentManagerName), $serviceNotFoundException->getCode(), $serviceNotFoundException); } $this->command->setHelperSet(new HelperSet(['dm' => new DocumentManagerHelper($documentManager)])); - return (int) $this->command->run($input, $output); + return $this->command->run($input, $output); } }
PHP 8.3: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L18
Escaped Mutant for Mutator "Coalesce": @@ @@ public function __invoke(ContainerInterface $container): ApcuAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); - $namespace = $config['namespace'] ?? ''; + $namespace = '' ?? $config['namespace']; $defaultLifetime = $config['defaultLifetime'] ?? 0; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */
PHP 8.3: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "DecrementInteger": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? -1; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.3: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "IncrementInteger": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? 1; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.3: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "Coalesce": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = 0 ?? $config['defaultLifetime']; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.3: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "DecrementInteger": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? -1; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.3: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "IncrementInteger": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? 1; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.3: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "Coalesce": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = 0 ?? $config['defaultLifetime']; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.3: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L18
Escaped Mutant for Mutator "TrueValue": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); $defaultLifetime = $config['defaultLifetime'] ?? 0; - $storeSerialized = $config['storeSerialized'] ?? true; + $storeSerialized = $config['storeSerialized'] ?? false; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0; return new ArrayAdapter($defaultLifetime, $storeSerialized, $maxLifetime, $maxItems); } }
PHP 8.3: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L18
Escaped Mutant for Mutator "Coalesce": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); $defaultLifetime = $config['defaultLifetime'] ?? 0; - $storeSerialized = $config['storeSerialized'] ?? true; + $storeSerialized = true ?? $config['storeSerialized']; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0; return new ArrayAdapter($defaultLifetime, $storeSerialized, $maxLifetime, $maxItems); } }
PHP 8.2: src/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L50
Escaped Mutant for Mutator "CastInt": @@ @@ throw new \InvalidArgumentException(\sprintf('Missing document manager with name "%s"', $documentManagerName), $serviceNotFoundException->getCode(), $serviceNotFoundException); } $this->command->setHelperSet(new HelperSet(['dm' => new DocumentManagerHelper($documentManager)])); - return (int) $this->command->run($input, $output); + return $this->command->run($input, $output); } }
PHP 8.2: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L18
Escaped Mutant for Mutator "Coalesce": @@ @@ public function __invoke(ContainerInterface $container): ApcuAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); - $namespace = $config['namespace'] ?? ''; + $namespace = '' ?? $config['namespace']; $defaultLifetime = $config['defaultLifetime'] ?? 0; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */
PHP 8.2: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "DecrementInteger": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? -1; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.2: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "IncrementInteger": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? 1; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.2: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "Coalesce": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = 0 ?? $config['defaultLifetime']; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.2: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "DecrementInteger": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? -1; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.2: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "IncrementInteger": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? 1; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.2: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "Coalesce": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = 0 ?? $config['defaultLifetime']; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.2: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L18
Escaped Mutant for Mutator "TrueValue": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); $defaultLifetime = $config['defaultLifetime'] ?? 0; - $storeSerialized = $config['storeSerialized'] ?? true; + $storeSerialized = $config['storeSerialized'] ?? false; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0; return new ArrayAdapter($defaultLifetime, $storeSerialized, $maxLifetime, $maxItems); } }
PHP 8.2: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L18
Escaped Mutant for Mutator "Coalesce": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); $defaultLifetime = $config['defaultLifetime'] ?? 0; - $storeSerialized = $config['storeSerialized'] ?? true; + $storeSerialized = true ?? $config['storeSerialized']; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0; return new ArrayAdapter($defaultLifetime, $storeSerialized, $maxLifetime, $maxItems); } }
PHP 8.4: src/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L50
Escaped Mutant for Mutator "CastInt": @@ @@ throw new \InvalidArgumentException(\sprintf('Missing document manager with name "%s"', $documentManagerName), $serviceNotFoundException->getCode(), $serviceNotFoundException); } $this->command->setHelperSet(new HelperSet(['dm' => new DocumentManagerHelper($documentManager)])); - return (int) $this->command->run($input, $output); + return $this->command->run($input, $output); } }
PHP 8.4: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L18
Escaped Mutant for Mutator "Coalesce": @@ @@ public function __invoke(ContainerInterface $container): ApcuAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); - $namespace = $config['namespace'] ?? ''; + $namespace = '' ?? $config['namespace']; $defaultLifetime = $config['defaultLifetime'] ?? 0; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */
PHP 8.4: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "DecrementInteger": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? -1; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.4: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "IncrementInteger": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? 1; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.4: src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L19
Escaped Mutant for Mutator "Coalesce": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['apcu'] ?? []); $namespace = $config['namespace'] ?? ''; - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = 0 ?? $config['defaultLifetime']; $version = $config['version'] ?? null; /** @var null|MarshallerInterface $marshaller */ $marshaller = $this->resolveValue($container, $config['marshaller'] ?? null);
PHP 8.4: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "DecrementInteger": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? -1; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.4: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "IncrementInteger": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = $config['defaultLifetime'] ?? 1; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.4: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L17
Escaped Mutant for Mutator "Coalesce": @@ @@ public function __invoke(ContainerInterface $container): ArrayAdapter { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); - $defaultLifetime = $config['defaultLifetime'] ?? 0; + $defaultLifetime = 0 ?? $config['defaultLifetime']; $storeSerialized = $config['storeSerialized'] ?? true; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0;
PHP 8.4: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L18
Escaped Mutant for Mutator "TrueValue": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); $defaultLifetime = $config['defaultLifetime'] ?? 0; - $storeSerialized = $config['storeSerialized'] ?? true; + $storeSerialized = $config['storeSerialized'] ?? false; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0; return new ArrayAdapter($defaultLifetime, $storeSerialized, $maxLifetime, $maxItems); } }
PHP 8.4: src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L18
Escaped Mutant for Mutator "Coalesce": @@ @@ { $config = $this->resolveConfig($container->get('config')['doctrine']['cache']['array'] ?? []); $defaultLifetime = $config['defaultLifetime'] ?? 0; - $storeSerialized = $config['storeSerialized'] ?? true; + $storeSerialized = true ?? $config['storeSerialized']; $maxLifetime = $config['maxLifetime'] ?? 0; $maxItems = $config['maxItems'] ?? 0; return new ArrayAdapter($defaultLifetime, $storeSerialized, $maxLifetime, $maxItems); } }