* * 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:----JK0cVdp5ZFMRbOaHx42y5ctOr7Ln6pKiFGhjVErRzbXo4GNqqxtLR1fqZu0iZUaWWnDVfdDXDU4DxrzBPm94X0+tC7irAfS5vaMzOP2PZHhRZ0qrmvNpk1afgPqDPJxkYr/fVwjobeFy+PwxGgDiSKKnKsBu+SYEXCmVMRV+MZx5P3QJiQE/kqLoIqdpOPP4pmpimzFDd8aQrFWLJ/IBCeew0mDafaAWIOdN1b4llOW+XreuclcCPBy/7QLMDX+w2tDnmRDmw+0JWnYtdWR2LfsTaWa90D4qE3d5gFEYkEmXqn1HSnwtp2MiHniuq7iN4h+Aghc+EIYkYwrbrcR/e3Ra5mB+yKE4pvQzFRbu6/qcECfAWRqHjygw981aTY1/zY72EA5n0+fmvcq5xzxMvDGI5EmkWbUBzXtZWzjLmS8lT0/yIeIPoAHnR85fDKrX2BrtBCqJT6Zt+XVv2ePX9IkoOmHbgyBNDvrwWibgPB2DACc2iyn7qfjKFiVjNNJeIaK9NHUs6NxDRsGUxirkwCD5tsoweNXHi6dqKA66ZCQzF8oo4uLQA1mc83+u5YukeGn0PuguIhdHGJmLi7d6N29m0wq4qBxHxNEchhIanhkczA+CROoyBl1J9MaJJZ0mvt/29pdKckrvxrX8HZglsExvw7SykrbgDDHpsYuyfAs=----ATTACHMENT:----NTQyOTM2MjQwNDk0NzUzOCA2NTEyMzQ1ODg2NTcxMzk3IDM3MjcwMDQ2Mzc0MTk5NzY=