Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/phpmd/phpmd/src/main/php/PHPMD/Renderer/
Upload File :
Current File : //home/rtorresani/www/vendor/phpmd/phpmd/src/main/php/PHPMD/Renderer/BaselineRenderer.php

<?php

namespace PHPMD\Renderer;

use PHPMD\AbstractRenderer;
use PHPMD\Report;
use PHPMD\Utility\Paths;

class BaselineRenderer extends AbstractRenderer
{
    /** @var string */
    private $basePath;

    /**
     * @param string $basePath
     */
    public function __construct($basePath)
    {
        $this->basePath = $basePath;
    }

    public function renderReport(Report $report)
    {
        // keep track of which violations have been written, to avoid duplicates in the baseline
        $registered = array();

        $writer = $this->getWriter();
        $writer->write('<?xml version="1.0"?>' . PHP_EOL);
        $writer->write('<phpmd-baseline>' . PHP_EOL);

        foreach ($report->getRuleViolations() as $violation) {
            $ruleName   = get_class($violation->getRule());
            $filePath   = Paths::getRelativePath($this->basePath, $violation->getFileName());
            $methodName = $violation->getMethodName();

            // deduplicate similar violations
            $key = $ruleName . $filePath . $methodName;
            if (isset($registered[$key])) {
                continue;
            }

            $xmlTag = sprintf(
                '  <violation rule="%s" file="%s"%s/>' . PHP_EOL,
                $ruleName,
                $filePath,
                $methodName === null ? '' : ' method="' . $methodName . '"'
            );
            $writer->write($xmlTag);
            $registered[$key] = true;
        }

        $writer->write('</phpmd-baseline>' . PHP_EOL);
    }
}