Skip to content

Commit 4713bfe

Browse files
committed
CS: remove unneeded parentheses around control statements
1 parent 9b86f8b commit 4713bfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,6 @@ private function isNextLineUnIndentedCollection()
670670
*/
671671
private function isStringUnIndentedCollectionItem()
672672
{
673-
return (0 === strpos($this->currentLine, '- '));
673+
return 0 === strpos($this->currentLine, '- ');
674674
}
675675
}

0 commit comments

Comments
 (0)