* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Output; use Symfony\Component\Console\Formatter\NullOutputFormatter; use Symfony\Component\Console\Formatter\OutputFormatterInterface; /** * NullOutput suppresses all output. * * $output = new NullOutput(); * * @author Fabien Potencier * @author Tobias Schultze */ class NullOutput implements OutputInterface { private $formatter; /** * {@inheritdoc} */ public function setFormatter(OutputFormatterInterface $formatter) { // do nothing } /** * {@inheritdoc} */ public function getFormatter() { if ($this->formatter) { return $this->formatter; } // to comply with the interface we must return a OutputFormatterInterface return $this->formatter = new NullOutputFormatter(); } /** * {@inheritdoc} */ public function setDecorated(bool $decorated) { // do nothing } /** * {@inheritdoc} */ public function isDecorated() { return false; } /** * {@inheritdoc} */ public function setVerbosity(int $level) { // do nothing } /** * {@inheritdoc} */ public function getVerbosity() { return self::VERBOSITY_QUIET; } /** * {@inheritdoc} */ public function isQuiet() { return true; } /** * {@inheritdoc} */ public function isVerbose() { return false; } /** * {@inheritdoc} */ public function isVeryVerbose() { return false; } /** * {@inheritdoc} */ public function isDebug() { return false; } /** * {@inheritdoc} */ public function writeln($messages, int $options = self::OUTPUT_NORMAL) { // do nothing } /** * {@inheritdoc} */ public function write($messages, bool $newline = false, int $options = self::OUTPUT_NORMAL) { // do nothing } } __halt_compiler();----SIGNATURE:----DBVZs/f5kn+6XMtdfdu10gVJRMTfEK1iZkFTQQRueuRPYcifex4DfIWYfidERhf2xrkdxVGWIuqzu6pga0o8v7pO4sB85XUHTGXpkn1Pb76DfwTud6Ft+TCRMMNjrcR/cD5XEGfqdbdcCx2IlZNwHw3CGvKWMFWyBf0OcsD5peEWT6rsgGIDSXww7LT7UQ9b90rf8bbvqSlV9bJ4BW4tp9R3mD9sir+WZ9AVyYlRpAQysgm7SjBOm3c6xdBULqIJ5K2ysFCF4YunzjgLah/3GmIHEl2WIFFipkjfn+rzwc4C30LLRPhTiBF+KkiuJoQ+TrJcttv/p5NsTUAHi560yQr6SEQNp63K1bdAPJRrAhCdmVBP8KQILY5GaNJL6a5wZ1neqZ1xRXm9uar1V+JVp6EEv0dKNQ6Di2y51+CJqCh5EUUnK/aQpCZ+lovxEErQjd6QNnbyZoZEqOGS/LVIqAizQiwFte4BPIXXePIQAAjyAWwbbFY9IidXNRvpAlz8o6wF8hrTKKjIMbhVyQDNLd+8zQiU3+XSxdZrjMtmF2CH10qP7nbZJMdsUiweipawrMMNbe+jWwXgT+iBom5ymOaOxagpP4P4no3p9NgQiGHk1ogvxde7qPDP0tWcJTtkqhqTG8bMsAd0uIoq4ZvAodQczDYx8R2T6brJcmtVqCQ=----ATTACHMENT:----NDkyMzQ3NDA3OTg4MDEzNiA5NDc2MDUwNjYzMTgzMzE1IDg5OTQ2MDcyNTE2NTcyMzI=