From 08232d7021688cad1888dacf73685c08880e9e53 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Fri, 15 Mar 2024 13:12:39 +0300 Subject: [PATCH 1/2] Remove scrutinizer --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 2318ba9..3e03eb7 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,7 @@ Read more in the [official documentation](https://cycle-orm.dev/docs/readme/2.x) [![Latest Stable Version](https://poser.pugx.org/yiisoft/yii-cycle/v/stable.png)](https://packagist.org/packages/yiisoft/yii-cycle) [![Total Downloads](https://poser.pugx.org/yiisoft/yii-cycle/downloads.png)](https://packagist.org/packages/yiisoft/yii-cycle) [![Build Status](https://github.com/yiisoft/yii-cycle/workflows/build/badge.svg)](https://github.com/yiisoft/yii-cycle/actions?query=workflow%3Abuild) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/yiisoft/yii-cycle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/yiisoft/yii-cycle/?branch=master) -[![Code Coverage](https://scrutinizer-ci.com/g/yiisoft/yii-cycle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/yiisoft/yii-cycle/?branch=master) +[![Code Coverage](https://codecov.io/gh/yiisoft/yii-cycle/graph/badge.svg?token=V9LWVNTIAA)](https://codecov.io/gh/yiisoft/yii-cycle) [![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fyiisoft%2Fyii-cycle%2Fmaster)](https://dashboard.stryker-mutator.io/reports/github.com/yiisoft/yii-cycle/master) [![static analysis](https://github.com/yiisoft/yii-cycle/workflows/static%20analysis/badge.svg)](https://github.com/yiisoft/yii-cycle/actions?query=workflow%3A%22static+analysis%22) [![type-coverage](https://shepherd.dev/github/yiisoft/yii-cycle/coverage.svg)](https://shepherd.dev/github/yiisoft/yii-cycle) From 77e8478e860f198394bb9bf944415a3208dcd362 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Fri, 15 Mar 2024 13:13:20 +0300 Subject: [PATCH 2/2] cleanup --- src/Command/Schema/SchemaPhpCommand.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Command/Schema/SchemaPhpCommand.php b/src/Command/Schema/SchemaPhpCommand.php index 84b10e2..4e0805b 100644 --- a/src/Command/Schema/SchemaPhpCommand.php +++ b/src/Command/Schema/SchemaPhpCommand.php @@ -18,8 +18,10 @@ final class SchemaPhpCommand extends Command protected static $defaultName = 'cycle/schema/php'; protected static $defaultDescription = 'Saves the current schema in a PHP file'; - public function __construct(private readonly Aliases $aliases, private readonly CycleDependencyProxy $promise) - { + public function __construct( + private readonly Aliases $aliases, + private readonly CycleDependencyProxy $promise, + ) { parent::__construct(); }