mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
200b26d809
* Refactor save() method to apply DRY * Update BaseRepository.php
49 lines
1.0 KiB
PHP
49 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Factory\QuoteInvitationFactory;
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
use App\Jobs\Quote\ApplyQuoteNumber;
|
|
use App\Jobs\Quote\CreateQuoteInvitations;
|
|
use App\Models\Client;
|
|
use App\Models\ClientContact;
|
|
use App\Models\Quote;
|
|
use App\Models\QuoteInvitation;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* QuoteRepository
|
|
*/
|
|
class QuoteRepository extends BaseRepository
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
public function getClassName()
|
|
{
|
|
return Quote::class;
|
|
}
|
|
|
|
public function save($data, Quote $quote) : ?Quote
|
|
{
|
|
return $this->alternativeSave($data, $quote);
|
|
}
|
|
|
|
public function getInvitationByKey($key) :?QuoteInvitation
|
|
{
|
|
return QuoteInvitation::whereRaw("BINARY `key`= ?", [$key])->first();
|
|
}
|
|
|
|
}
|