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/cartforge.co/vendor/phpmd/phpmd/src/main/php/PHPMD/Console/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/cartforge.co/vendor/phpmd/phpmd/src/main/php/PHPMD/Console/Output.php
<?php

namespace PHPMD\Console;

abstract class Output implements OutputInterface
{
    /** @var int */
    private $verbosity;

    /**
     * @param int $verbosity
     */
    public function __construct($verbosity = self::VERBOSITY_NORMAL)
    {
        $this->verbosity = $verbosity;
    }

    /**
     * @param string|string[] $messages
     * @param bool            $newline
     * @param int             $options A bitmask of options (one of the VERBOSITY constants),
     *                                 0 is considered the same as self::VERBOSITY_NORMAL
     * @return void
     */
    public function write($messages, $newline = false, $options = self::VERBOSITY_NORMAL)
    {
        if (is_array($messages) === false) {
            $messages = array($messages);
        }

        $verbosities = self::VERBOSITY_QUIET
            | self::VERBOSITY_NORMAL
            | self::VERBOSITY_VERBOSE
            | self::VERBOSITY_VERY_VERBOSE
            | self::VERBOSITY_DEBUG;
        $verbosity   = $verbosities & $options ?: self::VERBOSITY_NORMAL;

        if ($verbosity > $this->getVerbosity()) {
            return;
        }

        foreach ($messages as $message) {
            $this->doWrite($message . ($newline ? "\n" : ""));
        }
    }

    /**
     * @param string|string[] $messages
     * @param int             $options A bitmask of options (one of the VERBOSITY constants),
     *                                 0 is considered the same as self::VERBOSITY_NORMAL
     * @return void
     */
    public function writeln($messages, $options = self::VERBOSITY_NORMAL)
    {
        $this->write($messages, true, $options);
    }

    /**
     * @param int $level
     * @return void
     */
    public function setVerbosity($level)
    {
        $this->verbosity = $level;
    }

    /**
     * @return int
     */
    public function getVerbosity()
    {
        return $this->verbosity;
    }

    /**
     * @param string $message
     * @return void
     */
    abstract protected function doWrite($message);
}

Spamworldpro Mini