CI #1302
Annotations
30 warnings
|
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.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#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#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 "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/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/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 "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#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/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L37
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#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.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#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#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 "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/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/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 "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#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/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L37
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.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);
}
}
|
|
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#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#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 "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/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/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#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/ODM/MongoDB/Tools/Console/Command/DocumentManagerCommand.php#L37
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());
}
|