![]() 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/ |
<?php namespace PHPMD\Console; /** * A basic OutputInterface that follows a partial implementation of Symfony's OutputInterface to allow future drop-in * replacement by the Console package. */ interface OutputInterface { const VERBOSITY_QUIET = 16; const VERBOSITY_NORMAL = 32; const VERBOSITY_VERBOSE = 64; const VERBOSITY_VERY_VERBOSE = 128; const VERBOSITY_DEBUG = 256; /** * @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); /** * @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); /** * @param int $level * @return void */ public function setVerbosity($level); /** * @return int */ public function getVerbosity(); }