mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Removed old service provider.
This commit is contained in:
@@ -1,64 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* CrudServiceProvider.php
|
|
||||||
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
||||||
*
|
|
||||||
* This software may be modified and distributed under the terms of the
|
|
||||||
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
||||||
*
|
|
||||||
* See the LICENSE file for details.
|
|
||||||
*/
|
|
||||||
|
|
||||||
declare(strict_types = 1);
|
|
||||||
|
|
||||||
namespace FireflyIII\Providers;
|
|
||||||
|
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
|
||||||
use Illuminate\Foundation\Application;
|
|
||||||
use Illuminate\Support\ServiceProvider;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class CrudServiceProvider
|
|
||||||
*
|
|
||||||
* @package FireflyIII\Providers
|
|
||||||
*/
|
|
||||||
class CrudServiceProvider extends ServiceProvider
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Bootstrap the application services.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function boot()
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Register the application services.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function register()
|
|
||||||
{
|
|
||||||
$this->registerJournal();
|
|
||||||
}
|
|
||||||
|
|
||||||
private function registerJournal()
|
|
||||||
{
|
|
||||||
$this->app->bind(
|
|
||||||
'FireflyIII\Crud\Split\JournalInterface',
|
|
||||||
function (Application $app, array $arguments) {
|
|
||||||
if (!isset($arguments[0]) && $app->auth->check()) {
|
|
||||||
return app('FireflyIII\Crud\Split\Journal', [auth()->user()]);
|
|
||||||
}
|
|
||||||
if (!isset($arguments[0]) && !$app->auth->check()) {
|
|
||||||
throw new FireflyException('There is no user present.');
|
|
||||||
}
|
|
||||||
|
|
||||||
return app('FireflyIII\Crud\Split\Journal', $arguments);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue
Block a user