mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
40 lines
866 B
PHP
40 lines
866 B
PHP
<?php
|
|
|
|
namespace BookStack\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use BookStack\Services\ActivityService;
|
|
use BookStack\Services\SettingService;
|
|
|
|
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 new ActivityService($this->app->make('BookStack\Activity'));
|
|
});
|
|
|
|
$this->app->bind('setting', function() {
|
|
return new SettingService(
|
|
$this->app->make('BookStack\Setting'),
|
|
$this->app->make('Illuminate\Contracts\Cache\Repository')
|
|
);
|
|
});
|
|
}
|
|
}
|