Skip to content

deps(deps): update dependency cycle/orm to v2.9.0 - autoclosed #67

deps(deps): update dependency cycle/orm to v2.9.0 - autoclosed

deps(deps): update dependency cycle/orm to v2.9.0 - autoclosed #67

Triggered via pull request August 21, 2024 16:12
Status Success
Total duration 1m 22s
Artifacts

testing.yml

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

Annotations

11 warnings
code-coverage (ubuntu-latest, 8.3, locked)
Codecov: Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4.4.1/dist/codecov' failed with exit code 1
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/AppBootloader.php#L20
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ { protected static function defineInterceptors() : array { - return [CycleInterceptor::class, GridInterceptor::class, GuardInterceptor::class]; + return [GridInterceptor::class, GuardInterceptor::class]; } public function defineSingletons() : array {
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/AppBootloader.php#L29
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ } public function defineSingletons() : array { - return [CoreInterface::class => [self::class, 'domainCore']]; + return []; } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/ExceptionHandlerBootloader.php#L34
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ } public function defineBindings() : array { - return [SuppressErrorsInterface::class => EnvSuppressErrors::class, RendererInterface::class => PlainRenderer::class]; + return [RendererInterface::class => PlainRenderer::class]; } public function init(AbstractKernel $kernel) : void {
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/ExceptionHandlerBootloader.php#L40
Escaped Mutant for Mutator "PublicVisibility": --- Original +++ New @@ @@ { return [SuppressErrorsInterface::class => EnvSuppressErrors::class, RendererInterface::class => PlainRenderer::class]; } - public function init(AbstractKernel $kernel) : void + protected function init(AbstractKernel $kernel) : void { // Register the console renderer, that will be used when the application // is running in the console.
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/ExceptionHandlerBootloader.php#L44
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } public function init(AbstractKernel $kernel) : void { - // Register the console renderer, that will be used when the application - // is running in the console. - $this->handler->addRenderer(new ConsoleRenderer()); + $kernel->running(function () : void { // Register the JSON renderer, that will be used when the application is // running in the HTTP context and a JSON response is expected.
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/ExceptionHandlerBootloader.php#L46
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ // Register the console renderer, that will be used when the application // is running in the console. $this->handler->addRenderer(new ConsoleRenderer()); - $kernel->running(function () : void { - // Register the JSON renderer, that will be used when the application is - // running in the HTTP context and a JSON response is expected. - $this->handler->addRenderer(new JsonRenderer()); - }); + } public function boot(LoggerReporter $logger, FileReporter $files, AppEnvironment $appEnv) : void {
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/ExceptionHandlerBootloader.php#L53
Escaped Mutant for Mutator "PublicVisibility": --- Original +++ New @@ @@ $this->handler->addRenderer(new JsonRenderer()); }); } - public function boot(LoggerReporter $logger, FileReporter $files, AppEnvironment $appEnv) : void + protected function boot(LoggerReporter $logger, FileReporter $files, AppEnvironment $appEnv) : void { // Register the logger reporter, that will be used to log the exceptions using // the logger component.
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/ExceptionHandlerBootloader.php#L57
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } public function boot(LoggerReporter $logger, FileReporter $files, AppEnvironment $appEnv) : void { - // Register the logger reporter, that will be used to log the exceptions using - // the logger component. - $this->handler->addReporter($logger); + // Register the file reporter. It allows you to save detailed information about an exception to a file // known as snapshot. if ($appEnv->isLocal()) {
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/ExceptionHandlerBootloader.php#L61
Escaped Mutant for Mutator "IfNegation": --- Original +++ New @@ @@ $this->handler->addReporter($logger); // Register the file reporter. It allows you to save detailed information about an exception to a file // known as snapshot. - if ($appEnv->isLocal()) { + if (!$appEnv->isLocal()) { $this->handler->addReporter($files); } } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Spiral/Bootloaders/LoggingBootloader.php#L26
Escaped Mutant for Mutator "PublicVisibility": --- Original +++ New @@ @@ public function __construct(private readonly ConfiguratorInterface $config) { } - public function init(MonologBootloader $monolog) : void + protected function init(MonologBootloader $monolog) : void { // HTTP level errors $monolog->addHandler(channel: ErrorHandlerMiddleware::class, handler: $monolog->logRotate(directory('runtime') . 'logs/http.log'));