Baikal\Core\Tools::bashPrompt PHP Method

bashPrompt() static public method

static public bashPrompt ( $prompt )
    static function bashPrompt($prompt)
    {
        echo $prompt;
        @flush();
        @ob_flush();
        $confirmation = @trim(fgets(STDIN));
        return $confirmation;
    }