mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-14 21:04:48 +01:00
47 lines
1.6 KiB
PHP
47 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\PSR4\FileInfoAnalyzer;
|
|
|
|
use RectorPrefix20210523\Nette\Utils\Strings;
|
|
use PhpParser\Node\Stmt\ClassLike;
|
|
use Rector\CodingStyle\Naming\ClassNaming;
|
|
use Rector\Core\ValueObject\Application\File;
|
|
use Rector\NodeNameResolver\NodeNameResolver;
|
|
final class FileInfoDeletionAnalyzer
|
|
{
|
|
/**
|
|
* @see https://regex101.com/r/8BdrI3/1
|
|
* @var string
|
|
*/
|
|
private const TESTING_PREFIX_REGEX = '#input_(.*?)_#';
|
|
/**
|
|
* @var \Rector\NodeNameResolver\NodeNameResolver
|
|
*/
|
|
private $nodeNameResolver;
|
|
/**
|
|
* @var \Rector\CodingStyle\Naming\ClassNaming
|
|
*/
|
|
private $classNaming;
|
|
public function __construct(\Rector\NodeNameResolver\NodeNameResolver $nodeNameResolver, \Rector\CodingStyle\Naming\ClassNaming $classNaming)
|
|
{
|
|
$this->nodeNameResolver = $nodeNameResolver;
|
|
$this->classNaming = $classNaming;
|
|
}
|
|
public function isClassLikeAndFileInfoMatch(\Rector\Core\ValueObject\Application\File $file, \PhpParser\Node\Stmt\ClassLike $classLike) : bool
|
|
{
|
|
$className = $this->nodeNameResolver->getName($classLike);
|
|
if ($className === null) {
|
|
return \false;
|
|
}
|
|
$smartFileInfo = $file->getSmartFileInfo();
|
|
$baseFileName = $this->clearNameFromTestingPrefix($smartFileInfo->getBasenameWithoutSuffix());
|
|
$classShortName = $this->classNaming->getShortName($className);
|
|
return $baseFileName === $classShortName;
|
|
}
|
|
public function clearNameFromTestingPrefix(string $name) : string
|
|
{
|
|
return \RectorPrefix20210523\Nette\Utils\Strings::replace($name, self::TESTING_PREFIX_REGEX, '');
|
|
}
|
|
}
|