1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Repositories/CreditRepository.php

48 lines
1.0 KiB
PHP
Raw Normal View History

2020-01-03 10:34:10 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-01-03 10:34:10 +01:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2020-01-03 10:34:10 +01:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-01-03 10:34:10 +01:00
*/
namespace App\Repositories;
use App\Models\Credit;
use App\Models\CreditInvitation;
use App\Utils\Traits\MakesHash;
2020-01-03 10:34:10 +01:00
/**
* CreditRepository.
2020-01-03 10:34:10 +01:00
*/
class CreditRepository extends BaseRepository
{
use MakesHash;
2020-01-03 10:34:10 +01:00
public function __construct()
{
}
/**
* Saves the client and its contacts.
2020-01-03 10:34:10 +01:00
*
2020-10-28 11:10:49 +01:00
* @param array $data The data
* @param Credit $credit
* @return Credit|Credit|null Credit Object
* @throws \ReflectionException
2020-01-03 10:34:10 +01:00
*/
public function save(array $data, Credit $credit) : ?Credit
2020-01-03 10:34:10 +01:00
{
return $this->alternativeSave($data, $credit);
}
public function getInvitationByKey($key) :?CreditInvitation
{
2022-02-26 08:48:22 +01:00
return CreditInvitation::where('key', $key)->first();
2020-01-03 10:34:10 +01:00
}
}