Skip to content

chore update docs dependencies #449

chore update docs dependencies

chore update docs dependencies #449

Triggered via pull request November 10, 2025 20:37
Status Success
Total duration 4m 34s
Artifacts

testing.yml

on: pull_request
Matrix: code-coverage
Matrix: mutation-testing
Matrix: test-sqlite
Fit to window
Zoom out
Zoom in

Annotations

23 warnings
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/amphp/socket/src/Internal/functions.php#L191
Amp\Socket\Internal\normalizeBindToOption(): Implicitly marking parameter $bindTo as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/amphp/dns/src/functions.php#L40
Amp\Dns\resolve(): Implicitly marking parameter $typeRestriction as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/amphp/dns/src/functions.php#L14
Amp\Dns\dnsResolver(): Implicitly marking parameter $dnsResolver as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/symfony/translation/Resources/functions.php#L18
Symfony\Component\Translation\t(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L307
GuzzleHttp\Promise\each_limit_all(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L285
GuzzleHttp\Promise\each_limit(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L285
GuzzleHttp\Promise\each_limit(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L260
GuzzleHttp\Promise\each(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L260
GuzzleHttp\Promise\each(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L24
GuzzleHttp\Promise\queue(): Implicitly marking parameter $assign as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/amphp/socket/src/Internal/functions.php#L191
Amp\Socket\Internal\normalizeBindToOption(): Implicitly marking parameter $bindTo as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/amphp/dns/src/functions.php#L40
Amp\Dns\resolve(): Implicitly marking parameter $typeRestriction as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/amphp/dns/src/functions.php#L14
Amp\Dns\dnsResolver(): Implicitly marking parameter $dnsResolver as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/symfony/translation/Resources/functions.php#L18
Symfony\Component\Translation\t(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L307
GuzzleHttp\Promise\each_limit_all(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L285
GuzzleHttp\Promise\each_limit(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L285
GuzzleHttp\Promise\each_limit(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L260
GuzzleHttp\Promise\each(): Implicitly marking parameter $onRejected as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L260
GuzzleHttp\Promise\each(): Implicitly marking parameter $onFulfilled as nullable is deprecated, the explicit nullable type must be used instead
test-sqlite (ubuntu-latest, 8.4, lowest): vendor/guzzlehttp/promises/src/functions.php#L24
GuzzleHttp\Promise\queue(): Implicitly marking parameter $assign as nullable is deprecated, the explicit nullable type must be used instead
mutation-testing (ubuntu-latest, 8.2, locked): src/Testing/RefreshDatabase.php#L21
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ foreach ($database->getTables() as $table) { $schema = $table->getSchema(); foreach ($schema->getForeignKeys() as $foreign) { - $schema->dropForeignKey($foreign->getColumns()); + } $schema->save(HandlerInterface::DROP_FOREIGN_KEYS); }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/Registrators/RegisterSchema.php#L63
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ $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(); }); } }
mutation-testing (ubuntu-latest, 8.2, locked): src/Bridge/Laravel/Providers/Registrators/RegisterSchema.php#L57
Escaped Mutant for Mutator "LogicalNot": @@ @@ $config = $app->get(SchemaConfig::class); $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); }