mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
38 lines
702 B
PHP
38 lines
702 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Payment;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* PaymentRepository
|
|
*/
|
|
class PaymentRepository extends BaseRepository
|
|
{
|
|
|
|
|
|
public function getClassName()
|
|
{
|
|
return Payment::class;
|
|
}
|
|
|
|
public function save(Request $request, Payment $payment) : ?Payment
|
|
{
|
|
$payment->fill($request->input());
|
|
|
|
$payment->save();
|
|
|
|
return $payment;
|
|
}
|
|
|
|
} |