checklist/app/Console/Commands/UpdaterStop.php
Juan Felipe Zapata Moreno 9c6eeb5fb3 Commit Inicial
2025-08-05 09:52:38 -06:00

43 lines
884 B
PHP

<?php namespace App\Console\Commands;
/**
* @copyright Copyright (c) 2023 Notsoweb (https://notsoweb.com) - All rights reserved.
*/
use Illuminate\Console\Command;
/**
* Detener servicio de actualización automática
*
* @author Moisés de Jesús Cortés Castellanos <ing.moisesdejesuscortesc@notsoweb.com>
*
* @version 1.0.0
*/
class UpdaterStop extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'updater:stop';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Detener servicio de actualización automática';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
shell_exec("pm2 delete updater");
return Command::SUCCESS;
}
}