mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
37bf7f11e4
- Also showed entity path in search. - Cleaned popular entity fetch logic. - Cleaned entity selector JS code a little
47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Providers;
|
|
|
|
use BookStack\Actions\ActivityService;
|
|
use BookStack\Actions\ViewService;
|
|
use BookStack\Settings\SettingService;
|
|
use BookStack\Uploads\ImageService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class CustomFacadeProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->bind('activity', function () {
|
|
return $this->app->make(ActivityService::class);
|
|
});
|
|
|
|
$this->app->bind('views', function () {
|
|
return $this->app->make(ViewService::class);
|
|
});
|
|
|
|
$this->app->bind('setting', function () {
|
|
return $this->app->make(SettingService::class);
|
|
});
|
|
|
|
$this->app->bind('images', function () {
|
|
return $this->app->make(ImageService::class);
|
|
});
|
|
}
|
|
}
|