rector/packages/Skipper/Skipper/Skipper.php
2022-09-01 11:24:29 +00:00

54 lines
1.3 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Skipper\Skipper;
use Rector\Skipper\Contract\SkipVoterInterface;
/**
* @api
* @see \Rector\Tests\Skipper\Skipper\Skipper\SkipperTest
*/
final class Skipper
{
/**
* @var string
*/
private const FILE_ELEMENT = 'file_elements';
/**
* @var SkipVoterInterface[]
* @readonly
*/
private $skipVoters;
/**
* @param SkipVoterInterface[] $skipVoters
*/
public function __construct(array $skipVoters)
{
$this->skipVoters = $skipVoters;
}
/**
* @param string|object $element
*/
public function shouldSkipElement($element) : bool
{
return $this->shouldSkipElementAndFilePath($element, __FILE__);
}
public function shouldSkipFilePath(string $filePath) : bool
{
return $this->shouldSkipElementAndFilePath(self::FILE_ELEMENT, $filePath);
}
/**
* @param string|object $element
*/
public function shouldSkipElementAndFilePath($element, string $filePath) : bool
{
foreach ($this->skipVoters as $skipVoter) {
if (!$skipVoter->match($element)) {
continue;
}
return $skipVoter->shouldSkip($element, $filePath);
}
return \false;
}
}