????

Your IP : 3.16.66.2


Current Path : /home/thenclexdoctor.com/public_html/vendor/fruitcake/laravel-cors/src/
Upload File :
Current File : /home/thenclexdoctor.com/public_html/vendor/fruitcake/laravel-cors/src/CorsServiceProvider.php

<?php

namespace Fruitcake\Cors;

use Fruitcake\Cors\CorsService;
use Illuminate\Foundation\Application as LaravelApplication;
use Illuminate\Support\ServiceProvider as BaseServiceProvider;
use Laravel\Lumen\Application as LumenApplication;
use Illuminate\Foundation\Http\Events\RequestHandled;

class CorsServiceProvider extends BaseServiceProvider
{
    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
        $this->mergeConfigFrom($this->configPath(), 'cors');

        $this->app->singleton(CorsService::class, function ($app) {
            return new CorsService($this->app['config']->get('cors'));
        });
    }

    /**
     * Register the config for publishing
     *
     */
    public function boot()
    {
        if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
            $this->publishes([$this->configPath() => config_path('cors.php')], 'cors');
        } elseif ($this->app instanceof LumenApplication) {
            $this->app->configure('cors');
        }
    }

    /**
     * Set the config path
     *
     * @return string
     */
    protected function configPath()
    {
        return __DIR__ . '/../config/cors.php';
    }
}

Page not found | The NCLEX Doctor

Page not found!

Sorry, this page is not available...