2022-08-05 11:05:59 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
|
|
|
use App\Models\BankIntegration;
|
|
|
|
use App\Models\Task;
|
|
|
|
use App\Models\TaskStatus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for bank integration repository.
|
|
|
|
*/
|
|
|
|
class BankIntegrationRepository extends BaseRepository
|
|
|
|
{
|
|
|
|
|
2022-09-23 23:37:55 +02:00
|
|
|
public function save($data, BankIntegration $bank_integration)
|
2022-08-05 11:05:59 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
//stub to store
|
2022-09-22 03:47:58 +02:00
|
|
|
$bank_integration->fill($data);
|
|
|
|
$bank_integration->save();
|
2022-08-05 11:05:59 +02:00
|
|
|
|
2022-09-22 03:47:58 +02:00
|
|
|
return $bank_integration->fresh();
|
2022-08-05 11:05:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|