aik099 / CodingStandard

The PHP_CodeSniffer coding standard I'm using on all of my projects
BSD 3-Clause "New" or "Revised" License
5 stars 2 forks source link

Disallow multi-line operator usage #86

Closed aik099 closed 8 years ago

aik099 commented 8 years ago

Disallow multi-line operator usage, e.g.

$a = 1 +
2;

$a = 'a'
. 'b';
aik099 commented 8 years ago

Duplicate of #93