cb38f2ad90
* Refactor broadcast notifications * StyleCI fixes * Fix the planned_distance accidental changes
59 lines
1.8 KiB
PHP
Executable File
59 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Notifications\Channels\Discord\DiscordWebhook;
|
|
use App\Services\ModuleService;
|
|
use App\Support\ThemeViewFinder;
|
|
use App\Support\Utils;
|
|
use Illuminate\Pagination\Paginator;
|
|
use Illuminate\Support\Facades\Notification;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Support\Facades\View;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
public function boot(): void
|
|
{
|
|
Schema::defaultStringLength(191);
|
|
|
|
Paginator::useBootstrap();
|
|
View::share('moduleSvc', app(ModuleService::class));
|
|
|
|
Notification::extend('discord_webhook', function ($app) {
|
|
return app(DiscordWebhook::class);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->app->singleton('view.finder', function ($app) {
|
|
return new ThemeViewFinder(
|
|
$app['files'],
|
|
$app['config']['view.paths'],
|
|
null
|
|
);
|
|
});
|
|
|
|
// Only load the IDE helper if it's included and enabled
|
|
if (config('app.debug') === true) {
|
|
/* @noinspection NestedPositiveIfStatementsInspection */
|
|
/* @noinspection PhpFullyQualifiedNameUsageInspection */
|
|
if (class_exists(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class)) {
|
|
/* @noinspection PhpFullyQualifiedNameUsageInspection */
|
|
$this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
|
|
}
|
|
|
|
if (config('app.debug_toolbar') === true) {
|
|
Utils::enableDebugToolbar();
|
|
} else {
|
|
Utils::disableDebugToolbar();
|
|
}
|
|
}
|
|
}
|
|
}
|