123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\IO;
- /**
- * IOInterface that is not interactive and never writes the output
- *
- * @author Christophe Coevoet <stof@notk.org>
- */
- class NullIO extends BaseIO
- {
- /**
- * {@inheritDoc}
- */
- public function isInteractive()
- {
- return false;
- }
- /**
- * {@inheritDoc}
- */
- public function isVerbose()
- {
- return false;
- }
- /**
- * {@inheritDoc}
- */
- public function isVeryVerbose()
- {
- return false;
- }
- /**
- * {@inheritDoc}
- */
- public function isDebug()
- {
- return false;
- }
- /**
- * {@inheritDoc}
- */
- public function isDecorated()
- {
- return false;
- }
- /**
- * {@inheritDoc}
- */
- public function write($messages, $newline = true)
- {
- }
- /**
- * {@inheritDoc}
- */
- public function writeError($messages, $newline = true)
- {
- }
- /**
- * {@inheritDoc}
- */
- public function overwrite($messages, $newline = true, $size = 80)
- {
- }
- /**
- * {@inheritDoc}
- */
- public function overwriteError($messages, $newline = true, $size = 80)
- {
- }
- /**
- * {@inheritDoc}
- */
- public function ask($question, $default = null)
- {
- return $default;
- }
- /**
- * {@inheritDoc}
- */
- public function askConfirmation($question, $default = true)
- {
- return $default;
- }
- /**
- * {@inheritDoc}
- */
- public function askAndValidate($question, $validator, $attempts = false, $default = null)
- {
- return $default;
- }
- /**
- * {@inheritDoc}
- */
- public function askAndHideAnswer($question)
- {
- return null;
- }
- }
|