Make split platform independend

This commit is contained in:
Jaapio
2021-08-26 22:31:30 +02:00
parent c5ac781da3
commit bca4974b0b
5 changed files with 32 additions and 23 deletions
@@ -20,6 +20,8 @@ use phpDocumentor\Reflection\DocBlock\Tags\Link as LinkTag;
use phpDocumentor\Reflection\Types\Context;
use PHPUnit\Framework\TestCase;
use function str_replace;
/**
* @coversDefaultClass \phpDocumentor\Reflection\DocBlock\DescriptionFactory
* @covers ::<private>
@@ -192,7 +194,7 @@ DESCRIPTION;
$description = $factory->create($descriptionText, new Context(''));
$this->assertSame($expectedDescription, $description->render());
$this->assertSame(str_replace(PHP_EOL, "\n", $expectedDescription), $description->render());
}
/**