1 | <?php |
||
5 | class DownCommand extends Command |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $name = 'down'; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $description = 'Put the application into maintenance mode.'; |
||
16 | |||
17 | /** |
||
18 | * Put the application into maintenance mode. |
||
19 | */ |
||
20 | public function handle() |
||
28 | } |
||
29 |