File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-generator/src/Guard/OverrideGuard.php
Back
<?php declare (strict_types=1); namespace Rector\RectorGenerator\Guard; use Rector\RectorGenerator\FileSystem\TemplateFileSystem; use Rector\RectorGenerator\ValueObject\RectorRecipe; use RectorPrefix202208\Symfony\Component\Console\Style\SymfonyStyle; use RectorPrefix202208\Symplify\SmartFileSystem\SmartFileInfo; final class OverrideGuard { /** * @readonly * @var \Symfony\Component\Console\Style\SymfonyStyle */ private $symfonyStyle; /** * @readonly * @var \Rector\RectorGenerator\FileSystem\TemplateFileSystem */ private $templateFileSystem; public function __construct(SymfonyStyle $symfonyStyle, TemplateFileSystem $templateFileSystem) { $this->symfonyStyle = $symfonyStyle; $this->templateFileSystem = $templateFileSystem; } /** * @param array<string, mixed> $templateVariables * @param SmartFileInfo[] $templateFileInfos */ public function isUnwantedOverride(array $templateFileInfos, array $templateVariables, RectorRecipe $rectorRecipe, string $targetDirectory) : bool { $message = \sprintf('Files for "%s" rule already exist. Should we override them?', $rectorRecipe->getName()); foreach ($templateFileInfos as $templateFileInfo) { if (!$this->doesFileInfoAlreadyExist($templateVariables, $rectorRecipe, $templateFileInfo, $targetDirectory)) { continue; } return !$this->symfonyStyle->confirm($message); } return \false; } /** * @param array<string, string> $templateVariables */ private function doesFileInfoAlreadyExist(array $templateVariables, RectorRecipe $rectorRecipe, SmartFileInfo $templateFileInfo, string $targetDirectory) : bool { $destination = $this->templateFileSystem->resolveDestination($templateFileInfo, $templateVariables, $rectorRecipe, $targetDirectory); return \file_exists($destination); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings