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