Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove scrutinizer badges + Minor cleanup #203

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 4 additions & 2 deletions src/Command/Schema/SchemaPhpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down
Loading