File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 5050 <!-- From endouble repo -->
5151 <rule ref =" Squiz.Strings.ConcatenationSpacing" >
5252 <properties >
53- <property name =" spacing" value =" 1" />
5453 <property name =" ignoreNewlines" value =" true" />
5554 </properties >
5655 </rule >
Original file line number Diff line number Diff line change @@ -25,9 +25,8 @@ We imported the [PSR2 Standard](./psr2.md) with this override:
2525
2626We mainly respect the [ Symfony Standard] ( ./symfony.md ) but
2727
28- - We do not respect these rules :
28+ - We do not respect this rule :
2929
30- - Add no space around the concatenation (` . ` ) operator
3130 - Declare all the arguments on the same line as the method/function name, no matter how many arguments there are
3231
3332- We do not currently check these rules:
Original file line number Diff line number Diff line change @@ -9,16 +9,12 @@ From [symfony standard](http://symfony.com/doc/current/contributing/code/standar
99```
1010
1111- Add a single space around binary operators (` == ` , ` && ` , ` ... ` )
12+ with the exception of the concatenation (` . ` ) operator
1213
1314```
1415<rule ref="Squiz.WhiteSpace.OperatorSpacing" />
15- ```
16-
17- We do not respect the exception of the concatenation (` . ` ) operator
18- ```
1916<rule ref="Squiz.Strings.ConcatenationSpacing">
2017 <properties>
21- <property name="spacing" value="1"/>
2218 <property name="ignoreNewlines" value="true" />
2319 </properties>
2420</rule>
You can’t perform that action at this time.
0 commit comments