mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
35 lines
725 B
PHP
35 lines
725 B
PHP
<?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
|
|
{
|
|
|
|
public function save($data, BankIntegration $bank_integration)
|
|
{
|
|
|
|
//stub to store
|
|
$bank_integration->fill($data);
|
|
$bank_integration->save();
|
|
|
|
return $bank_integration->fresh();
|
|
}
|
|
|
|
}
|