Files
Global-Jain/app/Console/Commands/SendNewAppNotification.php

44 lines
777 B
PHP
Raw Normal View History

2025-11-05 10:37:10 +05:30
<?php
namespace App\Console\Commands;
use App\Jobs\Notifications\NewApp\SendDownloadNewApp;
use Illuminate\Console\Command;
class SendNewAppNotification extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'download:new-app';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
dispatch(new SendDownloadNewApp());
}
}