We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8777da commit 6684643Copy full SHA for 6684643
tests/integration/InterpretingDocBlocksTest.php
@@ -79,7 +79,14 @@ public function testInterpretingASimpleDocBlock(): void
79
$this->assertInstanceOf(DocBlock::class, $docblock);
80
$this->assertSame('This is an example of a summary.', $summary);
81
$this->assertInstanceOf(Description::class, $description);
82
- $this->assertSame($descriptionText, $description->render());
+ $this->assertSame(
83
+ str_replace(
84
+ PHP_EOL,
85
+ "\n",
86
+ $descriptionText
87
+ ),
88
+ $description->render()
89
+ );
90
$this->assertEmpty($docblock->getTags());
91
}
92
0 commit comments