mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 10:13:39 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			681 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			681 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Repositories;
 | 
						|
 | 
						|
use App\Models\ClientGatewayToken;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class for ClientGatewayTokenRepository .
 | 
						|
 */
 | 
						|
class ClientGatewayTokenRepository extends BaseRepository
 | 
						|
{
 | 
						|
 | 
						|
	public function save(array $data, ClientGatewayToken $client_gateway_token) :ClientGatewayToken
 | 
						|
	{
 | 
						|
 | 
						|
		$client_gateway_token->fill($data);
 | 
						|
		$client_gateway_token->save();
 | 
						|
 | 
						|
		return $client_gateway_token->fresh();		
 | 
						|
	}
 | 
						|
 | 
						|
}
 |