Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit 0f265f1

Browse files
committed
fix phpcs
1 parent 3b4605d commit 0f265f1

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

phpcs.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<ruleset name="Coding Standards">
2+
<ruleset name="Laravel Standards">
33

44
<!--
55
The name attribute of the ruleset tag is displayed
@@ -8,7 +8,7 @@
88
except in this file, so it can contain information for
99
developers who may change this file in the future.
1010
-->
11-
<description>Coding Standards</description>
11+
<description>The Laravel Coding Standards</description>
1212

1313
<!--
1414
If no files or directories are specified on the command line
@@ -19,7 +19,6 @@
1919
on the command line will ignore all file tags.
2020
-->
2121
<file>src</file>
22-
<file>config</file>
2322
<file>tests</file>
2423

2524
<!--
@@ -45,7 +44,6 @@
4544
The following tags are equivalent to the command line arguments:
4645
-p
4746
-->
48-
<arg name="standard" value="PSR2"/>
4947
<arg name="report" value="full"/>
5048
<arg name="colors"/>
5149
<arg value="p"/>
@@ -55,4 +53,14 @@
5553
The following tag sets the memory limit to 64M.
5654
-->
5755
<ini name="memory_limit" value="128M"/>
56+
57+
<!--
58+
Include all sniffs in the PEAR standard. Note that the
59+
path to the standard does not have to be specified as the
60+
PEAR standard exists inside the PHP_CodeSniffer install
61+
directory.
62+
-->
63+
<rule ref="PSR2">
64+
<exclude name="Generic.Files.LineLength"/>
65+
</rule>
5866
</ruleset>

0 commit comments

Comments
 (0)