Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/cartforge.co/vendor/phpmd/phpmd/src/main/php/PHPMD/Cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/cartforge.co/vendor/phpmd/phpmd/src/main/php/PHPMD/Cache/ResultCacheUpdater.php
<?php

namespace PHPMD\Cache;

use PHPMD\Cache\Model\ResultCacheState;
use PHPMD\Console\OutputInterface;
use PHPMD\Report;
use PHPMD\RuleSet;
use PHPMD\Utility\Paths;

class ResultCacheUpdater
{
    /** @var OutputInterface */
    private $output;
    /** @var string */
    private $basePath;

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

    /**
     * @param RuleSet[] $ruleSetList
     * @return ResultCacheState
     */
    public function update(array $ruleSetList, ResultCacheState $state, Report $report)
    {
        // grab a copy of the new violations
        $newViolations = $report->getRuleViolations();

        // add RuleViolations from the result cache to the report
        $violationsFromCache = 0;

        foreach ($state->getRuleViolations($this->basePath, $ruleSetList) as $ruleViolation) {
            $report->addRuleViolation($ruleViolation);
            ++$violationsFromCache;
        }

        // add violations from the report to the result cache
        foreach ($newViolations as $violation) {
            $filePath = Paths::getRelativePath($this->basePath, $violation->getFileName());
            $state->addRuleViolation($filePath, $violation);
        }

        $this->output->writeln(
            'Cache: added ' . count($newViolations) . ' violations to the result cache.',
            OutputInterface::VERBOSITY_VERY_VERBOSE
        );
        $this->output->writeln(
            'Cache: added ' . $violationsFromCache . ' violations from the result cache to the report.',
            OutputInterface::VERBOSITY_VERY_VERBOSE
        );

        return $state;
    }
}

Spamworldpro Mini