whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Console
/
Commands
/
Upload File:
files >> //home/qbizpnmr/arif.umairtax.com/app/Console/Commands/RecurringCommand.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Console\Commands; use App\Jobs\Cron\RecurringInvoicesCron; use Illuminate\Console\Command; class RecurringCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'ninja:send-recurring'; /** * The console command description. * * @var string */ protected $description = 'Sends the recurring invoices'; /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { (new RecurringInvoicesCron())->handle(); } }
Copyright ©2021 || Defacer Indonesia