Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/rector/rector/src/Logging/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/rector/rector/src/Logging/RectorOutput.php
<?php

declare (strict_types=1);
namespace Rector\Core\Logging;

use PHPStan\Internal\BytesHelper;
use Rector\Core\Contract\Rector\RectorInterface;
use Rector\Core\FileSystem\FilePathHelper;
use RectorPrefix202308\Symfony\Component\Console\Style\SymfonyStyle;
final class RectorOutput
{
    /**
     * @readonly
     * @var \Symfony\Component\Console\Style\SymfonyStyle
     */
    private $symfonyStyle;
    /**
     * @readonly
     * @var \Rector\Core\FileSystem\FilePathHelper
     */
    private $filePathHelper;
    /**
     * @var float|null
     */
    private $startTime;
    /**
     * @var int|null
     */
    private $previousMemory;
    public function __construct(SymfonyStyle $symfonyStyle, FilePathHelper $filePathHelper)
    {
        $this->symfonyStyle = $symfonyStyle;
        $this->filePathHelper = $filePathHelper;
    }
    public function isDebug() : bool
    {
        return $this->symfonyStyle->isDebug();
    }
    /**
     * @param class-string<RectorInterface> $rectorClass
     */
    public function printCurrentFileAndRule(string $filePath, string $rectorClass) : void
    {
        $relativeFilePath = $this->filePathHelper->relativePath($filePath);
        $this->symfonyStyle->writeln('[file] ' . $relativeFilePath);
        $this->symfonyStyle->writeln('[rule] ' . $rectorClass);
    }
    public function startConsumptions() : void
    {
        $this->startTime = \microtime(\true);
        $this->previousMemory = \memory_get_peak_usage(\true);
    }
    public function printConsumptions() : void
    {
        if ($this->startTime === null || $this->previousMemory === null) {
            return;
        }
        $elapsedTime = \microtime(\true) - $this->startTime;
        $currentTotalMemory = \memory_get_peak_usage(\true);
        $previousMemory = $this->previousMemory;
        $consumed = \sprintf('--- consumed %s, total %s, took %.2f s', BytesHelper::bytes($currentTotalMemory - $previousMemory), BytesHelper::bytes($currentTotalMemory), $elapsedTime);
        $this->symfonyStyle->writeln($consumed);
        $this->symfonyStyle->newLine(1);
    }
}

Spamworldpro Mini