GIF89; GIF89; %PDF- %PDF-
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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, $verbosity = self::NORMAL)
{
}
/**
* @inheritDoc
*/
public function writeError($messages, $newline = true, $verbosity = self::NORMAL)
{
}
/**
* @inheritDoc
*/
public function overwrite($messages, $newline = true, $size = 80, $verbosity = self::NORMAL)
{
}
/**
* @inheritDoc
*/
public function overwriteError($messages, $newline = true, $size = 80, $verbosity = self::NORMAL)
{
}
/**
* @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 = null, $default = null)
{
return $default;
}
/**
* @inheritDoc
*/
public function askAndHideAnswer($question)
{
return null;
}
/**
* @inheritDoc
*/
public function select($question, $choices, $default, $attempts = false, $errorMessage = 'Value "%s" is invalid', $multiselect = false)
{
return $default;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| BaseIO.php | File | 7.02 KB | 0644 |
|
| BufferIO.php | File | 2.9 KB | 0644 |
|
| ConsoleIO.php | File | 10.53 KB | 0644 |
|
| IOInterface.php | File | 7.78 KB | 0644 |
|
| NullIO.php | File | 2.23 KB | 0644 |
|