mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
48 lines
1.0 KiB
PHP
48 lines
1.0 KiB
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://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Credit;
|
|
use App\Models\CreditInvitation;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
/**
|
|
* CreditRepository.
|
|
*/
|
|
class CreditRepository extends BaseRepository
|
|
{
|
|
use MakesHash;
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
|
|
/**
|
|
* Saves the client and its contacts.
|
|
*
|
|
* @param array $data The data
|
|
* @param Credit $credit
|
|
* @return Credit|Credit|null Credit Object
|
|
* @throws \ReflectionException
|
|
*/
|
|
public function save(array $data, Credit $credit) : ?Credit
|
|
{
|
|
return $this->alternativeSave($data, $credit);
|
|
}
|
|
|
|
public function getInvitationByKey($key) :?CreditInvitation
|
|
{
|
|
return CreditInvitation::whereRaw('BINARY `key`= ?', [$key])->first();
|
|
}
|
|
}
|