Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/whatsapp-crm/app/Providers/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/app/Providers/SubscriptionServiceProvider.php

<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;

class SubscriptionServiceProvider extends ServiceProvider
{

    public function boot()
    {
        $this->app->singleton(SubscriptionService::class, function () {
            return new SubscriptionService();
        });
    }
}