1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Providers/MultiDBProvider.php
David Bomba 6d7b7ca9a3
Invoice Deletion - Ledger (#3590)
* Fixes when implementing

* php_cs

* Clean up

* Clean up

* Working on adjusting ledger when an invoice is deleted
2020-04-04 21:32:42 +11:00

50 lines
1008 B
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Providers;
use App\Libraries\MultiDB;
use Illuminate\Support\ServiceProvider;
class MultiDBProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
}
/**
* Register services.
*
* @return void
*/
public function register()
{
$this->app['events']->listen(
\Illuminate\Queue\Events\JobProcessing::class,
function ($event) {
if (isset($event->job->payload()['db'])) {
MultiDB::setDb($event->job->payload()['db']);
}
}
);
if ($this->app->runningInConsole()) {
return;
}
}
}