Skip to content

Commit ac16e72

Browse files
minor #61373 chore: PHP CS Fixer - heredoc indentation as of PHP 7.3 (keradus)
This PR was merged into the 7.4 branch. Discussion ---------- chore: PHP CS Fixer - heredoc indentation as of PHP 7.3 | Q | A | ------------- | --- | Branch? | 7.4 | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Issues | Fix CS <!-- prefix each issue number with "Fix #", no need to create an issue if none exists, explain below instead --> | License | MIT inspired by symfony/symfony@06e22b0#r2265021821 [Possible since PHP 7.3](https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc) with love by [PHP Coding Standards Fixer](https://cs.symfony.com/) Commits ------- 4a25a6a5785 chore: heredoc indentation as of PHP 7.3
2 parents b79fe9b + dc65632 commit ac16e72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/Node/NodeTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ public function testToString()
2323
$node = new Node([new ConstantNode('foo')]);
2424

2525
$this->assertEquals(<<<'EOF'
26-
Node(
27-
ConstantNode(value: 'foo')
28-
)
29-
EOF
26+
Node(
27+
ConstantNode(value: 'foo')
28+
)
29+
EOF
3030
, (string) $node);
3131
}
3232

0 commit comments

Comments
 (0)