/var/www/flurhymez/vendor/psy/psysh/src/Command
NameSizeModeActions
ListCommand/-0755rm
TimeitCommand/-0755rm
BufferCommand.php22180644editdlrm
ClearCommand.php10590644editdlrm
Command.php79430644editdlrm
DocCommand.php90870644editdlrm
DumpCommand.php25400644editdlrm
EditCommand.php57820644editdlrm
ExitCommand.php10840644editdlrm
HelpCommand.php29440644editdlrm
HistoryCommand.php75700644editdlrm
ListCommand.php99920644editdlrm
ParseCommand.php49990644editdlrm
PsyVersionCommand.php9530644editdlrm
ReflectingCommand.php104520644editdlrm
ShowCommand.php97640644editdlrm
SudoCommand.php37680644editdlrm
ThrowUpCommand.php44310644editdlrm
TimeitCommand.php53450644editdlrm
TraceCommand.php25930644editdlrm
WhereamiCommand.php42910644editdlrm
WtfCommand.php37830644editdlrm
Edit: /var/www/flurhymez/vendor/psy/psysh/src/Command/ClearCommand.php (1059B)
setName('clear') ->setDefinition([]) ->setDescription('Clear the Psy Shell screen.') ->setHelp( <<<'HELP' Clear the Psy Shell screen. Pro Tip: If your PHP has readline support, you should be able to use ctrl+l too! HELP ); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $output->write(\sprintf('%c[2J%c[0;0f', 27, 27)); return 0; } }