diff --git a/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc b/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc index 286fdf1e75..e42225e89a 100644 --- a/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc +++ b/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc @@ -468,3 +468,13 @@ $resource = new class() { $one <<= 8; $onetwothree = 3; + +// Issue 3326. +class Test +{ + public const DEFAULT = 'default'; + public const SOS = 'sos'; + public const HELP = 'help'; + + protected static $thisIsAReallyLongVariableName = []; +} diff --git a/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc.fixed b/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc.fixed index f08312ddf9..5d5516d1fa 100644 --- a/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc.fixed +++ b/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc.fixed @@ -468,3 +468,13 @@ $resource = new class() { $one <<= 8; $onetwothree = 3; + +// Issue 3326. +class Test +{ + public const DEFAULT = 'default'; + public const SOS = 'sos'; + public const HELP = 'help'; + + protected static $thisIsAReallyLongVariableName = []; +}