mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
21 lines
581 B
PHP
21 lines
581 B
PHP
|
<?php namespace BookStack\Providers;
|
||
|
|
||
|
use BookStack\Translation\FileLoader;
|
||
|
use Illuminate\Translation\TranslationServiceProvider as BaseProvider;
|
||
|
|
||
|
class TranslationServiceProvider extends BaseProvider
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Register the translation line loader.
|
||
|
* Overrides the default register action from Laravel so a custom loader can be used.
|
||
|
* @return void
|
||
|
*/
|
||
|
protected function registerLoader()
|
||
|
{
|
||
|
$this->app->singleton('translation.loader', function ($app) {
|
||
|
return new FileLoader($app['files'], $app['path.lang']);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|