mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 18:57:34 -05:00 
			
		
		
		
	- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
		
			
				
	
	
		
			26 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace App\Models;
 | 
						|
 | 
						|
use Eloquent;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class Bank
 | 
						|
 */
 | 
						|
class Bank extends Eloquent
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @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);
 | 
						|
    }
 | 
						|
}
 |