| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class AppServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * All of the container bindings that should be registered. |
||
| 15 | * |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | public $bindings = [ |
||
| 19 | SocialUserResolverInterface::class => SocialUserResolver::class, |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Register any application services. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function register() |
||
| 28 | { |
||
| 29 | if ($this->app->environment() !== 'production') { |
||
| 30 | $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class); |
||
| 31 | } |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Bootstrap any application services. |
||
| 36 | * |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | public function boot() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |