CI #1420
Annotations
30 warnings
|
PHP 8.4:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L30
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$config = $this->resolveConfig($array);
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? 1;
/** @var bool $storeSerialized */
$storeSerialized = $config['storeSerialized'] ?? true;
|
|
PHP 8.4:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L30
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$config = $this->resolveConfig($array);
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? -1;
/** @var bool $storeSerialized */
$storeSerialized = $config['storeSerialized'] ?? true;
|
|
PHP 8.4:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L25
Escaped Mutant for Mutator "Coalesce":
@@ @@
$cache = $doctrine['cache'] ?? [];
/** @var array<string, mixed> $array */
- $array = $cache['array'] ?? [];
+ $array = [] ?? $cache['array'];
$config = $this->resolveConfig($array);
|
|
|
|
PHP 8.4:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L19
Escaped Mutant for Mutator "Coalesce":
@@ @@
$containerConfig = $container->get('config');
/** @var array<string, mixed> $doctrine */
- $doctrine = $containerConfig['doctrine'] ?? [];
+ $doctrine = [] ?? $containerConfig['doctrine'];
/** @var array<string, mixed> $cache */
$cache = $doctrine['cache'] ?? [];
|
|
|
|
PHP 8.4:
src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L34
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$namespace = $config['namespace'] ?? '';
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? 1;
/** @var null|string $version */
$version = $config['version'] ?? null;
|
|
PHP 8.4:
src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L34
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$namespace = $config['namespace'] ?? '';
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? -1;
/** @var null|string $version */
$version = $config['version'] ?? null;
|
|
|
|
PHP 8.4:
src/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L40
Escaped Mutant for Mutator "NotIdentical":
@@ @@
protected function execute(InputInterface $input, OutputInterface $output): int
{
- if (null !== $this->getApplication()) {
+ if (null === $this->getApplication()) {
// has to be set, and cannot be set in configure, cause symfony...
$this->command->setApplication($this->getApplication());
}
|
|
PHP 8.3:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L30
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$config = $this->resolveConfig($array);
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? 1;
/** @var bool $storeSerialized */
$storeSerialized = $config['storeSerialized'] ?? true;
|
|
PHP 8.3:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L30
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$config = $this->resolveConfig($array);
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? -1;
/** @var bool $storeSerialized */
$storeSerialized = $config['storeSerialized'] ?? true;
|
|
PHP 8.3:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L25
Escaped Mutant for Mutator "Coalesce":
@@ @@
$cache = $doctrine['cache'] ?? [];
/** @var array<string, mixed> $array */
- $array = $cache['array'] ?? [];
+ $array = [] ?? $cache['array'];
$config = $this->resolveConfig($array);
|
|
|
|
PHP 8.3:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L19
Escaped Mutant for Mutator "Coalesce":
@@ @@
$containerConfig = $container->get('config');
/** @var array<string, mixed> $doctrine */
- $doctrine = $containerConfig['doctrine'] ?? [];
+ $doctrine = [] ?? $containerConfig['doctrine'];
/** @var array<string, mixed> $cache */
$cache = $doctrine['cache'] ?? [];
|
|
|
|
PHP 8.3:
src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L34
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$namespace = $config['namespace'] ?? '';
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? 1;
/** @var null|string $version */
$version = $config['version'] ?? null;
|
|
PHP 8.3:
src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L34
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$namespace = $config['namespace'] ?? '';
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? -1;
/** @var null|string $version */
$version = $config['version'] ?? null;
|
|
|
|
PHP 8.3:
src/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L40
Escaped Mutant for Mutator "NotIdentical":
@@ @@
protected function execute(InputInterface $input, OutputInterface $output): int
{
- if (null !== $this->getApplication()) {
+ if (null === $this->getApplication()) {
// has to be set, and cannot be set in configure, cause symfony...
$this->command->setApplication($this->getApplication());
}
|
|
PHP 8.5:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L30
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$config = $this->resolveConfig($array);
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? 1;
/** @var bool $storeSerialized */
$storeSerialized = $config['storeSerialized'] ?? true;
|
|
PHP 8.5:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L30
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$config = $this->resolveConfig($array);
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? -1;
/** @var bool $storeSerialized */
$storeSerialized = $config['storeSerialized'] ?? true;
|
|
PHP 8.5:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L25
Escaped Mutant for Mutator "Coalesce":
@@ @@
$cache = $doctrine['cache'] ?? [];
/** @var array<string, mixed> $array */
- $array = $cache['array'] ?? [];
+ $array = [] ?? $cache['array'];
$config = $this->resolveConfig($array);
|
|
|
|
PHP 8.5:
src/ServiceFactory/Common/Cache/ArrayAdapterFactory.php#L19
Escaped Mutant for Mutator "Coalesce":
@@ @@
$containerConfig = $container->get('config');
/** @var array<string, mixed> $doctrine */
- $doctrine = $containerConfig['doctrine'] ?? [];
+ $doctrine = [] ?? $containerConfig['doctrine'];
/** @var array<string, mixed> $cache */
$cache = $doctrine['cache'] ?? [];
|
|
|
|
PHP 8.5:
src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L34
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$namespace = $config['namespace'] ?? '';
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? 1;
/** @var null|string $version */
$version = $config['version'] ?? null;
|
|
PHP 8.5:
src/ServiceFactory/Common/Cache/ApcuAdapterFactory.php#L34
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$namespace = $config['namespace'] ?? '';
/** @var int $defaultLifetime */
- $defaultLifetime = $config['defaultLifetime'] ?? 0;
+ $defaultLifetime = $config['defaultLifetime'] ?? -1;
/** @var null|string $version */
$version = $config['version'] ?? null;
|
|
|
|
PHP 8.5:
src/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L40
Escaped Mutant for Mutator "NotIdentical":
@@ @@
protected function execute(InputInterface $input, OutputInterface $output): int
{
- if (null !== $this->getApplication()) {
+ if (null === $this->getApplication()) {
// has to be set, and cannot be set in configure, cause symfony...
$this->command->setApplication($this->getApplication());
}
|