-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
23 lines (19 loc) · 767 Bytes
/
Copy pathphpcs.xml.dist
File metadata and controls
23 lines (19 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<ruleset name="php-parallel-soap">
<description>The coding standard of the php-parallel-soap package</description>
<arg value="p" />
<!-- WSDL-bound fixtures keep their SOAP operation names (PascalCase), so they are not sniffed. -->
<exclude-pattern>tests/Fixtures/*</exclude-pattern>
<config name="ignore_warnings_on_exit" value="1" />
<config name="ignore_errors_on_exit" value="1" />
<arg name="colors" />
<arg value="s" />
<!-- Use the PSR2 Standard-->
<rule ref="PSR2" />
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="250" />
<property name="absoluteLineLimit" value="300" />
</properties>
</rule>
</ruleset>