We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4abfb0b commit f71d06eCopy full SHA for f71d06e
2 files changed
config/php82/phpcsfixer.rules.yml
@@ -0,0 +1,3 @@
1
+parameters:
2
+ rules:
3
+ single_line_empty_body: true
src/Config/Php82.php
@@ -0,0 +1,23 @@
+<?php
+
+declare(strict_types=1);
4
5
+namespace drupol\PhpCsFixerConfigsPhp\Config;
6
7
+final class Php82 extends YamlConfig
8
+{
9
+ public function __construct()
10
+ {
11
+ parent::__construct('drupol/phpcsfixer-configs-php/php73');
12
13
+ $parent = (new Php82())->withRulesFromYaml((new Php73)->getRules());
14
15
+ $this
16
+ ->setRules(
17
+ $this->withRulesFromConfig($parent)->getRules()
18
+ );
19
20
21
+ ->setFinder($parent->getFinder());
22
+ }
23
+}
0 commit comments