Skip to content

Commit 0717f9a

Browse files
committed
Merge branch '2.3' into 2.7
* 2.3: [Process] Unset callback after stop to free memory Improve error message for undefined DIC aliases Fix typo CS: remove unneeded parentheses around control statements
2 parents d0c5e68 + 4713bfe commit 0717f9a

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
@@ -707,6 +707,6 @@ private function isNextLineUnIndentedCollection()
707707
*/
708708
private function isStringUnIndentedCollectionItem()
709709
{
710-
return (0 === strpos($this->currentLine, '- '));
710+
return 0 === strpos($this->currentLine, '- ');
711711
}
712712
}

0 commit comments

Comments
 (0)