/
home
/
obinna
/
html
/
cravings
/
vendor
/
sentry
/
sentry-laravel
/
src
/
Sentry
/
Laravel
/
Upload File
HOME
<?php namespace Sentry\Laravel; use Illuminate\Support\ServiceProvider; abstract class BaseServiceProvider extends ServiceProvider { /** * Abstract type to bind Sentry as in the Service Container. * * @var string */ public static $abstract = 'sentry'; /** * Check if a DSN was set in the config. * * @return bool */ protected function hasDsnSet(): bool { $config = $this->getUserConfig(); return !empty($config['dsn']); } /** * Retrieve the user configuration. * * @return array */ protected function getUserConfig(): array { $config = $this->app['config'][static::$abstract]; return empty($config) ? [] : $config; } }