Skip to content

Commit e4fba07

Browse files
committed
let the lib comply with it's own rules
1 parent 952d010 commit e4fba07

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

src/Config.php

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,13 @@
66

77
use PhpCsFixer\Config as Base;
88

9-
class Config extends Base
10-
{
11-
12-
public function __construct($name = 'default')
13-
{
9+
class Config extends Base {
10+
public function __construct($name = 'default') {
1411
parent::__construct($name);
1512
$this->setIndent("\t");
1613
}
1714

18-
public function getRules()
19-
{
15+
public function getRules() {
2016
return [
2117
'@PSR1' => true,
2218
'@PSR2' => true,
@@ -64,5 +60,4 @@ public function getRules()
6460
],
6561
];
6662
}
67-
6863
}

0 commit comments

Comments
 (0)