mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
9a2931cbe4
bdc2fc9963
[NodeManipulator] Remove parent lookup on PropertyFetchAssignManipulator (#4037)
25 lines
678 B
PHP
25 lines
678 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\BetterPhpDocParser\Printer;
|
|
|
|
use RectorPrefix202306\Nette\Utils\Strings;
|
|
final class DocBlockInliner
|
|
{
|
|
/**
|
|
* @var string
|
|
* @see https://regex101.com/r/Mjb0qi/1
|
|
*/
|
|
private const NEWLINE_CLOSING_DOC_REGEX = "#\n \\*\\/\$#";
|
|
/**
|
|
* @var string
|
|
* @see https://regex101.com/r/U5OUV4/2
|
|
*/
|
|
private const NEWLINE_MIDDLE_DOC_REGEX = "#\n \\* #";
|
|
public function inline(string $docContent) : string
|
|
{
|
|
$docContent = Strings::replace($docContent, self::NEWLINE_MIDDLE_DOC_REGEX, ' ');
|
|
return Strings::replace($docContent, self::NEWLINE_CLOSING_DOC_REGEX, ' */');
|
|
}
|
|
}
|