1 | <?php |
||
12 | class Email extends Command |
||
13 | { |
||
14 | /** |
||
15 | * The name and signature of the console command. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $signature = 'email:send {email} {nom=Boyer}'; |
||
20 | |||
21 | /** |
||
22 | * The console command description. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $description = 'Send an email for an use'; |
||
27 | |||
28 | /** |
||
29 | * Execute the console command. |
||
30 | * |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function handle() |
||
44 | } |
||
45 |