chore update docs dependencies to v20.17.7 #134
Annotations
10 warnings
🧪 Run mutation testing using Xdebug and infection/infection:
src/Bridge/Cache/Providers/CacheServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge":
--- Original
+++ New
@@ @@
{
/** @var Repository $config */
$config = $this->app->get(Repository::class);
- $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities']));
+ $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']);
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Bridge/Laravel/Providers/Registrators/RegisterSchema.php#L64
Escaped Mutant for Mutator "LogicalNot":
--- Original
+++ New
@@ @@
/** @var CacheManagerContract $cache */
$cache = $app->get(CacheManagerContract::class);
$schemaCompiler = Compiler::fromMemory(cache: $cache);
- if ($schemaCompiler->isEmpty() || !$config->cacheSchema()) {
+ if ($schemaCompiler->isEmpty() || $config->cacheSchema()) {
$schemaCompiler = Compiler::compile(registry: $app->get(Registry::class), queue: $app->get(GeneratorLoader::class));
$schemaCompiler->toMemory($cache);
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Bridge/Laravel/Providers/Registrators/RegisterSchema.php#L70
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$schemaCompiler = Compiler::fromMemory(cache: $cache);
if ($schemaCompiler->isEmpty() || !$config->cacheSchema()) {
$schemaCompiler = Compiler::compile(registry: $app->get(Registry::class), queue: $app->get(GeneratorLoader::class));
- $schemaCompiler->toMemory($cache);
+
}
return $schemaCompiler->toSchema();
});
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Bridge/Queue/Providers/QueueServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge":
--- Original
+++ New
@@ @@
{
/** @var Repository $config */
$config = $this->app->get(Repository::class);
- $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities']));
+ $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']);
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Bridge/Session/Providers/SessionServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge":
--- Original
+++ New
@@ @@
{
/** @var Repository $config */
$config = $this->app->get(Repository::class);
- $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities']));
+ $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']);
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Bridge/Telescope/Providers/TelescopeServiceProvider.php#L25
Escaped Mutant for Mutator "UnwrapArrayMerge":
--- Original
+++ New
@@ @@
{
/** @var Repository $config */
$config = $this->app->get(Repository::class);
- $config->set('cycle.tokenizer.directories', array_merge($config->get('cycle.tokenizer.directories', []), [__DIR__ . '/../Entities']));
+ $config->set('cycle.tokenizer.directories', [__DIR__ . '/../Entities']);
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Support/Arr.php#L54
Escaped Mutant for Mutator "LogicalAndNegation":
--- Original
+++ New
@@ @@
return $array[$key] ?? $default;
}
foreach (explode('.', $key) as $segment) {
- if (is_array($array) && array_key_exists($segment, $array)) {
+ if (!(is_array($array) && array_key_exists($segment, $array))) {
$array = $array[$segment];
} else {
return $default;
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Testing/Concerns/InteractsWithDatabase.php#L109
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
}
protected function assertSoftDeleted($table, array $data = [], $connection = null, $deletedAtColumn = 'deleted_at') : self
{
- $this->assertThat($table, new SoftDeletedInDatabase(app(DatabaseProviderInterface::class), $data, $deletedAtColumn));
+
return $this;
}
protected function assertNotSoftDeleted($table, array $data = [], $connection = null, $deletedAtColumn = 'deleted_at') : self
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Testing/Concerns/InteractsWithDatabase.php#L123
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
}
protected function assertNotSoftDeleted($table, array $data = [], $connection = null, $deletedAtColumn = 'deleted_at') : self
{
- $this->assertThat($table, new NotSoftDeletedInDatabase(app(DatabaseProviderInterface::class), $data, $deletedAtColumn));
+
return $this;
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
src/Testing/RefreshDatabase.php#L13
Escaped Mutant for Mutator "ProtectedVisibility":
--- Original
+++ New
@@ @@
use Cycle\Database\Table;
trait RefreshDatabase
{
- protected function refreshDatabase() : void
+ private function refreshDatabase() : void
{
$database = app(DatabaseProviderInterface::class)->database('default');
/** @var Table $table */
|
Loading