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 50
50
<!-- From endouble repo -->
51
51
<rule ref =" Squiz.Strings.ConcatenationSpacing" >
52
52
<properties >
53
- <property name =" spacing" value =" 1" />
54
53
<property name =" ignoreNewlines" value =" true" />
55
54
</properties >
56
55
</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:
25
25
26
26
We mainly respect the [ Symfony Standard] ( ./symfony.md ) but
27
27
28
- - We do not respect these rules :
28
+ - We do not respect this rule :
29
29
30
- - Add no space around the concatenation (` . ` ) operator
31
30
- Declare all the arguments on the same line as the method/function name, no matter how many arguments there are
32
31
33
32
- 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
9
9
```
10
10
11
11
- Add a single space around binary operators (` == ` , ` && ` , ` ... ` )
12
+ with the exception of the concatenation (` . ` ) operator
12
13
13
14
```
14
15
<rule ref="Squiz.WhiteSpace.OperatorSpacing" />
15
- ```
16
-
17
- We do not respect the exception of the concatenation (` . ` ) operator
18
- ```
19
16
<rule ref="Squiz.Strings.ConcatenationSpacing">
20
17
<properties>
21
- <property name="spacing" value="1"/>
22
18
<property name="ignoreNewlines" value="true" />
23
19
</properties>
24
20
</rule>
You can’t perform that action at this time.
0 commit comments