Gush\Tests\Template\PullRequest\Create\PullRequestCustomTemplateTest::normalizeWhiteSpace PHP Method

normalizeWhiteSpace() private static method

private static normalizeWhiteSpace ( $input )
    private static function normalizeWhiteSpace($input)
    {
        $input = str_replace(PHP_EOL, "\n", $input);
        $input = preg_replace('/^\\s+$/m', '', $input);
        return $input;
    }