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 12e2ad4 commit 939e57cCopy full SHA for 939e57c
phpcs.xml
@@ -0,0 +1,24 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
4
+
5
+ <arg name="basepath" value="."/>
6
+ <arg name="cache" value=".phpcs-cache"/>
7
+ <arg name="colors"/>
8
+ <arg name="extensions" value="php"/>
9
10
+ <rule ref="PSR12">
11
+ <exclude name="PSR2.Methods.MethodDeclaration.Underscore"/>
12
+ </rule>
13
14
+ <rule ref="Generic.Files.LineLength">
15
+ <properties>
16
+ <property name="lineLimit" value="150"/>
17
+ <property name="absoluteLineLimit" value="0"/>
18
+ </properties>
19
20
21
+ <file>src</file>
22
+ <file>tests</file>
23
24
+</ruleset>
0 commit comments