2021-04-20 06:26:16 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-04-20 06:26:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
2021-04-20 08:03:14 +02:00
|
|
|
use App\Models\ClientGatewayToken;
|
|
|
|
|
2021-04-20 06:26:16 +02:00
|
|
|
/**
|
|
|
|
* Class for ClientGatewayTokenRepository .
|
|
|
|
*/
|
|
|
|
class ClientGatewayTokenRepository extends BaseRepository
|
|
|
|
{
|
2021-04-20 08:03:14 +02:00
|
|
|
|
|
|
|
public function save(array $data, ClientGatewayToken $client_gateway_token) :ClientGatewayToken
|
|
|
|
{
|
|
|
|
|
|
|
|
$client_gateway_token->fill($data);
|
|
|
|
$client_gateway_token->save();
|
|
|
|
|
|
|
|
return $client_gateway_token->fresh();
|
|
|
|
}
|
|
|
|
|
2021-04-20 06:26:16 +02:00
|
|
|
}
|