File "RaveServiceProvider.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/kingflamez/laravelrave/src/RaveServiceProvider.php
File size: 952 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace KingFlamez\Rave;
use Illuminate\Support\ServiceProvider;
class RaveServiceProvider extends ServiceProvider
{
protected $defer = false;
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
{
$config = realpath(__DIR__.'/../resources/config/flutterwave.php');
$this->publishes([
$config => config_path('flutterwave.php')
]);
}
/**
* Register any package services.
*
* @return void
*/
public function register()
{
$this->app->singleton('laravelrave', function ($app) {
return new Rave($app->make("request"));
});
$this->app->alias('laravelrave', "KingFlamez\Rave\Rave");
}
/**
* Get the services provided by the provider
*
* @return array
*/
public function provides()
{
return ['laravelrave'];
}
}