File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-generator/src/TemplateInitializer.php
Back
<?php declare (strict_types=1); namespace Rector\RectorGenerator; use RectorPrefix202208\Symfony\Component\Console\Style\SymfonyStyle; use RectorPrefix202208\Symplify\SmartFileSystem\FileSystemGuard; use RectorPrefix202208\Symplify\SmartFileSystem\SmartFileSystem; final class TemplateInitializer { /** * @readonly * @var \Symfony\Component\Console\Style\SymfonyStyle */ private $symfonyStyle; /** * @readonly * @var \Symplify\SmartFileSystem\SmartFileSystem */ private $smartFileSystem; /** * @readonly * @var \Symplify\SmartFileSystem\FileSystemGuard */ private $fileSystemGuard; public function __construct(SymfonyStyle $symfonyStyle, SmartFileSystem $smartFileSystem, FileSystemGuard $fileSystemGuard) { $this->symfonyStyle = $symfonyStyle; $this->smartFileSystem = $smartFileSystem; $this->fileSystemGuard = $fileSystemGuard; } public function initialize(string $templateFilePath, string $rootFileName) : void { $this->fileSystemGuard->ensureFileExists($templateFilePath, __METHOD__); $targetFilePath = \getcwd() . '/' . $rootFileName; $doesFileExist = $this->smartFileSystem->exists($targetFilePath); if ($doesFileExist) { $message = \sprintf('Config file "%s" already exists', $rootFileName); $this->symfonyStyle->warning($message); } else { $this->smartFileSystem->copy($templateFilePath, $targetFilePath); $message = \sprintf('"%s" config file was added', $rootFileName); $this->symfonyStyle->success($message); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings