File tree 3 files changed +25
-3
lines changed
3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ cs-install:
21
21
22
22
.PHONY : cs
23
23
cs :
24
- php build-cs/vendor/bin/phpcs --standard=build-cs/phpcs.xml src tests
24
+ php build-cs/vendor/bin/phpcs src tests
25
25
26
26
.PHONY : cs-fix
27
27
cs-fix :
28
- php build-cs/vendor/bin/phpcbf --standard=build-cs/phpcs.xml src tests
28
+ php build-cs/vendor/bin/phpcbf src tests
29
29
30
30
.PHONY : phpstan
31
31
phpstan :
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" ?>
2
+ <ruleset name =" PHPStan Extensions Coding Standard" >
3
+ <config name =" php_version" value =" 70200" />
4
+ <arg name =" colors" />
5
+ <arg name =" extensions" value =" php" />
6
+ <arg name =" encoding" value =" utf-8" />
7
+ <arg name =" tab-width" value =" 4" />
8
+ <arg name =" cache" value =" tmp/phpcs" />
9
+ <arg value =" sp" />
10
+
11
+ <rule ref =" build-cs/phpcs.xml" >
12
+ <exclude name =" Squiz.Strings.DoubleQuoteUsage.ContainsVar" />
13
+ </rule >
14
+ <rule ref =" SlevomatCodingStandard.Files.TypeNameMatchesFileName" >
15
+ <properties >
16
+ <property name =" rootNamespaces" type =" array" >
17
+ <element key =" src" value =" PHPStan\PhpDocParser" />
18
+ <element key =" tests/PHPStan" value =" PHPStan\PhpDocParser" />
19
+ </property >
20
+ </properties >
21
+ </rule >
22
+ </ruleset >
Original file line number Diff line number Diff line change 8
8
* Copyright (c) 2011, Nikita Popov
9
9
* All rights reserved.
10
10
*/
11
- abstract class AbstractNodeVisitor implements NodeVisitor
11
+ abstract class AbstractNodeVisitor implements NodeVisitor // phpcs:ignore SlevomatCodingStandard.Classes.SuperfluousAbstractClassNaming.SuperfluousPrefix
12
12
{
13
13
14
14
public function beforeTraverse (array $ nodes ): ?array
You can’t perform that action at this time.
0 commit comments