arcos-backend/stubs/console.stub
Moisés de Jesús Cortés Castellanos 517628b92d
ADD: Plantilla Holos (#1)
2024-12-13 16:14:50 -06:00

35 lines
596 B
Plaintext

<?php namespace {{ namespace }};
/**
* @copyright (c) 2024 Notsoweb Software (https://notsoweb.com) - All Rights Reserved
*/
use Illuminate\Console\Command;
/**
* Descripción
*
* @author Moisés Cortés C. <moises.cortes@notsoweb.com>
*
* @version 1.0.0
*/
class {{ class }} extends Command
{
/**
* Nombre del comando
*/
protected $signature = '{{ command }}';
/**
* La descripción del comando
*/
protected $description = 'Descripción del comando';
/**
* Ejecutar comando
*/
public function handle()
{
//
}
}