rbrecruiter/app/Providers/AppServiceProvider.php

40 lines
740 B
PHP
Raw Normal View History

2020-04-26 04:09:32 +00:00
<?php
namespace App\Providers;
use App\Observers\UserObserver;
use App\User;
use Illuminate\Support\Facades\Schema;
2020-04-26 04:09:32 +00:00
use Illuminate\Support\ServiceProvider;
use Sentry;
2020-04-26 04:09:32 +00:00
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Sentry\init([
'release' => env('RELEASE')
]);
Schema::defaultStringLength(191);
User::observe(UserObserver::class);
$this->app['request']->server->set('HTTPS', $this->app->environment() != 'local');
2020-04-26 04:09:32 +00:00
}
}