You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$tooLongString = 'This is a pretty long line. The code sniffer will report an error if a single line exceeds the maximum character count. You have need to insert a line break to avoid this error.';
8
+
9
+
// allowed
10
+
$longStringBrokenUp = 'This is a pretty long line. The code sniffer would report an error if this was written as a ' .
11
+
'single line. You have to insert a line break to avoid this error.';
12
+
13
+
// allowed by Magento Standard (Generic ruleset would trigger warning / error)
0 commit comments