/home/smartonegroup/www/system/vendor/rector/rector/packages/Testing/Fixture/FixtureFileUpdater.php
<?php

declare (strict_types=1);
namespace Rector\Testing\Fixture;

use RectorPrefix202211\Nette\Utils\FileSystem;
final class FixtureFileUpdater
{
    public static function updateFixtureContent(string $originalFilePath, string $changedContent, string $fixtureFilepath) : void
    {
        if (!\getenv('UPDATE_TESTS') && !\getenv('UT')) {
            return;
        }
        $newOriginalContent = self::resolveNewFixtureContent($originalFilePath, $changedContent);
        FileSystem::write($fixtureFilepath, $newOriginalContent);
    }
    private static function resolveNewFixtureContent(string $originalFilePath, string $changedContent) : string
    {
        $originalContent = FileSystem::read($originalFilePath);
        if ($originalContent === $changedContent) {
            return $originalContent;
        }
        return $originalContent . '-----' . \PHP_EOL . $changedContent;
    }
}