-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
27 lines (24 loc) · 857 Bytes
/
phpcs.xml
File metadata and controls
27 lines (24 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<ruleset name="Framgia Extended">
<description>Framgia Extended Coding Convention</description>
<arg name="tab-width" value="4"/>
<arg name="encoding" value="UTF-8"/>
<!-- Check both app/ and config/ -->
<file>./app</file>
<file>./config</file>
<rule ref="Framgia"/>
<!-- Check space between operator +-*/ -->
<rule ref="Squiz.WhiteSpace.OperatorSpacing">
<properties>
<property name="ignoreNewlines" value="true" />
</properties>
</rule>
<!-- Line between class method -->
<rule ref="Squiz.WhiteSpace.FunctionSpacing">
<properties>
<property name="spacing" value="1" />
<property name="spacingAfterLast" value="0" />
<property name="spacingBeforeFirst" value="0" />
</properties>
</rule>
</ruleset>