mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
34 lines
651 B
PHP
34 lines
651 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 store($data, BankIntegration $bank_integration)
|
||
|
{
|
||
|
|
||
|
//stub to store
|
||
|
|
||
|
return $bank_integration->save();
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|