@@ -99,14 +99,14 @@ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
9999 if ($ previousType === $ currentType ) {
100100 $ fix = $ phpcsFile ->addFixableError (
101101 'Expected no empty lines '
102- . 'between annotations of the same type ' ,
102+ .'between annotations of the same type ' ,
103103 $ commentTag ,
104104 'SameType '
105105 );
106106 } else {
107107 $ fix = $ phpcsFile ->addFixableError (
108108 'Expected no empty lines '
109- . 'between custom annotations ' ,
109+ .'between custom annotations ' ,
110110 $ commentTag ,
111111 'CustomType '
112112 );
@@ -127,7 +127,7 @@ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
127127 if ($ previousLine !== $ commentTagLine - 2 ) {
128128 $ fix = $ phpcsFile ->addFixableError (
129129 'Expected exactly one empty line '
130- . 'between annotations of different types ' ,
130+ .'between annotations of different types ' ,
131131 $ commentTag ,
132132 'DifferentType '
133133 );
@@ -151,7 +151,7 @@ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
151151 );
152152 $ phpcsFile ->fixer ->addContentBefore (
153153 $ firstOnLine ,
154- $ content . $ phpcsFile ->eolChar
154+ $ content. $ phpcsFile ->eolChar
155155 );
156156 } else {
157157 $ this ->removeLines (
0 commit comments