Path : /var/www/clients/client0/web25/web/vendor/creativeorange/gravatar/src/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/vendor/creativeorange/gravatar/src/GravatarServiceProvider.php |
<?php namespace Creativeorange\Gravatar; use Illuminate\Support\ServiceProvider; class GravatarServiceProvider extends ServiceProvider { // // /** // * Indicates if loading of the provider is deferred. // * // * @var bool // */ // protected $defer = false; /** * Register the service provider. * * @return void */ public function register() { $configPath = __DIR__ . '/../config/gravatar.php'; $this->mergeConfigFrom($configPath, 'gravatar'); $this->app->singleton('gravatar', function () { return new Gravatar; }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return []; } public function boot () { $this->publishes([ __DIR__.'/../config/gravatar.php' => config_path('gravatar.php'), ]); } }