/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Console/Application.php
23 строки
517 B
Tetiana Blindaruk
[5.6] added missed null PhpDoc (#23829)
07 апр 2018, 20:05
07 апр 2018, 20:05
b4b89ad
Код
Авторство
О чём код?
<?php namespace Illuminate\Contracts\Console; interface Application { /** * Run an Artisan console command by name. * * @param string $command * @param array $parameters * @param \Symfony\Component\Console\Output\OutputInterface|null $outputBuffer * @return int */ public function call($command, array $parameters = [], $outputBuffer = null); /** * Get the output from the last command. * * @return string */ public function output(); }