Вход Регистрация
Файл: gapps/vendor/laravel/framework/src/Illuminate/Contracts/Console/Kernel.php
Строк: 69
<?php

namespace IlluminateContractsConsole;

interface 
Kernel
{
    
/**
     * Handle an incoming console command.
     *
     * @param  SymfonyComponentConsoleInputInputInterface  $input
     * @param  SymfonyComponentConsoleOutputOutputInterface  $output
     * @return int
     */
    
public function handle($input$output null);

    
/**
     * Run an Artisan console command by name.
     *
     * @param  string  $command
     * @param  array  $parameters
     * @return int
     */
    
public function call($command, array $parameters = []);

    
/**
     * Queue an Artisan console command by name.
     *
     * @param  string  $command
     * @param  array  $parameters
     * @return int
     */
    
public function queue($command, array $parameters = []);

    
/**
     * Get all of the commands registered with the console.
     *
     * @return array
     */
    
public function all();

    
/**
     * Get the output for the last run command.
     *
     * @return string
     */
    
public function output();
}
Онлайн: 0
Реклама