mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
b3eb2ae3b4
* Working on subscriptions * Implement return type in models * Subscription implementation * Improvements to handling importation of large accountS * Loggin imports * Activate collector * Improve memory usage of import script * Appen Tags into emails - fix companygatewaytransformer
42 lines
765 B
PHP
42 lines
765 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\Models;
|
|
|
|
/**
|
|
* Class Bank.
|
|
*/
|
|
class Bank extends StaticModel
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* @param $finance
|
|
*
|
|
* @return \App\Libraries\Bank
|
|
*/
|
|
public function getOFXBank($finance)
|
|
{
|
|
$config = json_decode($this->config);
|
|
|
|
return new \App\Libraries\Bank($finance, $config->fid, $config->url, $config->org);
|
|
}
|
|
|
|
public function getEntityType()
|
|
{
|
|
return Bank::class;
|
|
}
|
|
|
|
}
|