mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-26 19:00:22 -06:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace FireflyIII\Providers;
|
|
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
/**
|
|
* Class AttachmentServiceProvider
|
|
*
|
|
* @package FireflyIII\Providers
|
|
*/
|
|
class AttachmentServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->bind(
|
|
'FireflyIII\Repositories\Attachment\AttachmentRepositoryInterface',
|
|
function (Application $app, array $arguments) {
|
|
if (!isset($arguments[0]) && $app->auth->check()) {
|
|
return app('FireflyIII\Repositories\Attachment\AttachmentRepository', [$app->auth->user()]);
|
|
} else {
|
|
if (!isset($arguments[0]) && !$app->auth->check()) {
|
|
throw new FireflyException('There is no user present.');
|
|
}
|
|
}
|
|
|
|
return app('FireflyIII\Repositories\Attachment\AttachmentRepository', $arguments);
|
|
}
|
|
);
|
|
}
|
|
}
|