<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Models\MiddlewareContent;

class RunIntegrationApis extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'app:run-integration-apis';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description';

    /**
     * Execute the console command.
     */
    public function handle()
    {
        MiddlewareContent::sendPendingApis();
        return 0;
    }
}
