@@ -54,7 +54,7 @@ public function fix(\SplFileInfo $file, Tokens $tokens): void
5454 continue ;
5555 }
5656
57- if (Preg::match ('/\R/ ' , $ tokens [$ index ]->getContent ()) !== 1 ) {
57+ if (! Preg::match ('/\R/ ' , $ tokens [$ index ]->getContent ())) {
5858 continue ;
5959 }
6060
@@ -65,7 +65,7 @@ public function fix(\SplFileInfo $file, Tokens $tokens): void
6565
6666 private function fixOpening (Tokens $ tokens , int $ index ): void
6767 {
68- if (Preg::match ('#^/\*+\R# ' , $ tokens [$ index ]->getContent ()) === 1 ) {
68+ if (Preg::match ('#^/\*+\R# ' , $ tokens [$ index ]->getContent ())) {
6969 return ;
7070 }
7171
@@ -93,7 +93,7 @@ private function fixOpening(Tokens $tokens, int $index): void
9393 $ indent .= ' ' ;
9494 }
9595
96- if (Preg::match ('#^\h+$# ' , $ beforeNewline ) === 1 ) {
96+ if (Preg::match ('#^\h+$# ' , $ beforeNewline )) {
9797 $ insert = '' ;
9898 } else {
9999 $ insert = $ newline . $ indent . $ beforeNewline ;
@@ -102,13 +102,13 @@ private function fixOpening(Tokens $tokens, int $index): void
102102 $ newContent = $ opening . $ insert . $ newline . $ afterNewline ;
103103
104104 if ($ newContent !== $ tokens [$ index ]->getContent ()) {
105- $ tokens [$ index ] = new Token ([Preg::match ('~/\*{2}\s~ ' , $ newContent ) === 1 ? \T_DOC_COMMENT : \T_COMMENT , $ newContent ]);
105+ $ tokens [$ index ] = new Token ([Preg::match ('~/\*{2}\s~ ' , $ newContent ) ? \T_DOC_COMMENT : \T_COMMENT , $ newContent ]);
106106 }
107107 }
108108
109109 private function fixClosing (Tokens $ tokens , int $ index ): void
110110 {
111- if (Preg::match ('#\R\h*\*+/$# ' , $ tokens [$ index ]->getContent ()) === 1 ) {
111+ if (Preg::match ('#\R\h*\*+/$# ' , $ tokens [$ index ]->getContent ())) {
112112 return ;
113113 }
114114
0 commit comments