Skip to content

Commit 293cb03

Browse files
committed
fix issue
1 parent 5b96f84 commit 293cb03

5 files changed

Lines changed: 5 additions & 232 deletions

File tree

.github/renovate.json5

Lines changed: 0 additions & 170 deletions
This file was deleted.

.github/workflows/auto-approve.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/auto-merge.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/renovate-config-validator.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.php-cs-fixer.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
declare(strict_types = 1);
1313

14+
use PhpCsFixer\Config;
15+
use PhpCsFixer\Finder;
16+
1417
$year = date('Y');
1518

1619
$header = <<<EOF
@@ -22,7 +25,7 @@
2225
file that was distributed with this source code.
2326
EOF;
2427

25-
$finder = PhpCsFixer\Finder::create()
28+
$finder = Finder::create()
2629
->files()
2730
->name('*.php')
2831
->in(__DIR__ . '/src')
@@ -32,7 +35,7 @@
3235

3336
$rules = require 'vendor/mimmi20/coding-standard/src/php-cs-fixer.config.php';
3437

35-
$config = new PhpCsFixer\Config();
38+
$config = new Config();
3639

3740
return $config
3841
->setRiskyAllowed(true)

0 commit comments

Comments
 (0)