Файл: gapps/vendor/laravel/framework/src/Illuminate/Foundation/Console/DownCommand.php
Строк: 42
<?php
namespace IlluminateFoundationConsole;
use IlluminateConsoleCommand;
class DownCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'down';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Put the application into maintenance mode';
/**
* Execute the console command.
*
* @return void
*/
public function fire()
{
touch($this->laravel->storagePath().'/framework/down');
$this->comment('Application is now in maintenance mode.');
}
}