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/ResultCacheEngineFactory.php
<?php

namespace PHPMD\Cache;

use PHPMD\Console\OutputInterface;
use PHPMD\RuleSet;
use PHPMD\TextUI\CommandLineOptions;

class ResultCacheEngineFactory
{
    /** @var OutputInterface */
    private $output;
    /** @var ResultCacheKeyFactory */
    private $cacheKeyFactory;
    /** @var ResultCacheStateFactory */
    private $cacheStateFactory;

    public function __construct(
        OutputInterface         $output,
        ResultCacheKeyFactory   $cacheKeyFactory,
        ResultCacheStateFactory $cacheStateFactory
    ) {
        $this->output            = $output;
        $this->cacheKeyFactory   = $cacheKeyFactory;
        $this->cacheStateFactory = $cacheStateFactory;
    }

    /**
     * @param string    $basePath
     * @param RuleSet[] $ruleSetList
     * @return ResultCacheEngine|null
     */
    public function create($basePath, CommandLineOptions $options, array $ruleSetList)
    {
        if ($options->isCacheEnabled() === false) {
            $this->output->writeln('ResultCache is not enabled.', OutputInterface::VERBOSITY_VERY_VERBOSE);
            return null;
        }

        // create cache key based on the current rules and environment
        $cacheKey = $this->cacheKeyFactory->create($options->hasStrict(), $ruleSetList);

        // load result cache from file
        $state = $this->cacheStateFactory->fromFile($options->cacheFile());
        if ($state === null) {
            $this->output->writeln(
                'ResultCache is enabled, but no prior cache-result file exists.',
                OutputInterface::VERBOSITY_VERY_VERBOSE
            );
        }

        // the cache key doesn't match the stored cache key. Invalidate cache
        if ($state !== null && $state->getCacheKey()->isEqualTo($cacheKey) === false) {
            $this->output->writeln(
                'ResultCache is enabled, but the cache metadata doesn\'t match.',
                OutputInterface::VERBOSITY_VERY_VERBOSE
            );
            $state = null;
        } else {
            $this->output->writeln(
                'ResultCache is enabled, and read from ' . $options->cacheFile(),
                OutputInterface::VERBOSITY_VERY_VERBOSE
            );
        }

        return new ResultCacheEngine(
            new ResultCacheFileFilter($this->output, $basePath, $options->cacheStrategy(), $cacheKey, $state),
            new ResultCacheUpdater($this->output, $basePath),
            new ResultCacheWriter($options->cacheFile())
        );
    }
}

Spamworldpro Mini