updated-packages
This commit is contained in:
7
vendor/psy/psysh/src/Shell.php
vendored
7
vendor/psy/psysh/src/Shell.php
vendored
@@ -21,7 +21,6 @@ use Psy\ExecutionLoop\ProcessForker;
|
||||
use Psy\ExecutionLoop\RunkitReloader;
|
||||
use Psy\Input\ShellInput;
|
||||
use Psy\Input\SilentInput;
|
||||
use Psy\Output\ShellOutput;
|
||||
use Psy\TabCompletion\Matcher;
|
||||
use Psy\VarDumper\PresenterAware;
|
||||
use Symfony\Component\Console\Application;
|
||||
@@ -47,7 +46,7 @@ use Symfony\Component\Console\Output\OutputInterface;
|
||||
*/
|
||||
class Shell extends Application
|
||||
{
|
||||
const VERSION = 'v0.9.9';
|
||||
const VERSION = 'v0.9.12';
|
||||
|
||||
const PROMPT = '>>> ';
|
||||
const BUFF_PROMPT = '... ';
|
||||
@@ -372,7 +371,7 @@ class Shell extends Application
|
||||
|
||||
do {
|
||||
// reset output verbosity (in case it was altered by a subcommand)
|
||||
$this->output->setVerbosity(ShellOutput::VERBOSITY_VERBOSE);
|
||||
$this->output->setVerbosity(OutputInterface::VERBOSITY_VERBOSE);
|
||||
|
||||
$input = $this->readline();
|
||||
|
||||
@@ -931,7 +930,7 @@ class Shell extends Application
|
||||
|
||||
// Incremental flush
|
||||
if ($out !== '' && !$isCleaning) {
|
||||
$this->output->write($out, false, ShellOutput::OUTPUT_RAW);
|
||||
$this->output->write($out, false, OutputInterface::OUTPUT_RAW);
|
||||
$this->outputWantsNewline = (\substr($out, -1) !== "\n");
|
||||
$this->stdoutBuffer .= $out;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user