b0y-101 Mini Shell


Current Path : E:/www2/kidsbangna/wp-content/plugins/ninja-tables/app/Hooks/Handlers/
File Upload :
Current File : E:/www2/kidsbangna/wp-content/plugins/ninja-tables/app/Hooks/Handlers/DataProviderHandler.php

<?php

namespace NinjaTables\App\Hooks\Handlers;

use NinjaTables\App\Modules\DataProviders\DefaultProvider;
use NinjaTables\App\Modules\DataProviders\FluentFormProvider;
use NinjaTables\Framework\Foundation\Application;

class DataProviderHandler
{
    protected $app = null;

    public function __construct(Application $app)
    {
        $this->app = $app;
    }

    public function handle()
    {
        $this->app->make(FluentFormProvider::class)->boot();
        $this->app->make(DefaultProvider::class)->boot();
    }
}

Copyright © 2019 by b0y-101