403Webshell
Server IP : 138.197.107.151  /  Your IP : 216.73.217.7
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux BloxBy-Builder 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64
User : wpbetasites_mrakzqskir ( 1022)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/silversharkadmindev/vendor/psy/psysh/src/Readline/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/silversharkadmindev/vendor/psy/psysh/src/Readline/InteractiveReadlineInterface.php
<?php

/*
 * This file is part of Psy Shell.
 *
 * (c) 2012-2026 Justin Hileman
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Psy\Readline;

use Psy\Completion\CompletionEngine;
use Psy\Output\Theme;
use Psy\Readline\Interactive\Input\History;
use Psy\Readline\Interactive\Terminal;
use Symfony\Component\Console\Output\OutputInterface;

/**
 * Interface for interactive readline implementations with additional features.
 *
 * This interface extends the shell readline interface with rich terminal
 * behavior such as themed prompts, output-aware redisplay, advanced
 * completion, and interactive history integration.
 */
interface InteractiveReadlineInterface extends ShellReadlineInterface
{
    /**
     * Set the theme (currently used for prompt configuration).
     */
    public function setTheme(Theme $theme): void;

    /**
     * Enable or disable bracketed paste mode.
     */
    public function setUseBracketedPaste(bool $enabled): void;

    /**
     * Enable or disable inline suggestions.
     */
    public function setUseSuggestions(bool $enabled): void;

    /**
     * Enable or disable syntax highlighting.
     */
    public function setUseSyntaxHighlighting(bool $enabled): void;

    /**
     * Set the CompletionEngine for context-aware tab completion and autosuggestions.
     */
    public function setCompletionEngine(CompletionEngine $completionEngine): void;

    /**
     * Set the output stream.
     */
    public function setOutput(OutputInterface $output, ?Terminal $terminal = null): void;

    /**
     * Get the history instance.
     */
    public function getHistory(): History;

    /**
     * Report whether visible output was written since the last input.
     *
     * The readline implementation uses this to decide whether to continue
     * the current input frame or start a fresh one.
     */
    public function setOutputWritten(bool $written): void;
}

Youez - 2016 - github.com/yon3zu
LinuXploit