/home/techb158/ileadtechnology.com/vendor/kingflamez/laravelrave/src
Edit: /home/techb158/ileadtechnology.com/vendor/kingflamez/laravelrave/src/RaveServiceProvider.php (1010B)
publishes([
$config => config_path('rave.php')
]);
}
/**
* Register any package services.
*
* @return void
*/
public function register()
{
$this->app->singleton('laravelrave', function ($app) {
return new Rave($app->make("request"), new Request, new Body);
});
$this->app->alias('laravelrave', "KingFlamez\Rave\Rave");
}
/**
* Get the services provided by the provider
*
* @return array
*/
public function provides()
{
return ['laravelrave'];
}
}