mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-16 04:57:15 +01:00
40 lines
735 B
PHP
40 lines
735 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Xentral\Modules\FiskalyApi\Transaction\Payment;
|
|
|
|
abstract class BasePayment
|
|
{
|
|
/** @var string */
|
|
private $paymentType;
|
|
/** @var float */
|
|
private $amount;
|
|
|
|
/**
|
|
* BasePayment constructor.
|
|
*
|
|
* @param string $paymentType
|
|
* @param float $amount
|
|
*/
|
|
protected function __construct(string $paymentType, float $amount)
|
|
{
|
|
$this->paymentType = $paymentType;
|
|
$this->amount = $amount;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getPaymentType(): string {
|
|
return $this->paymentType;
|
|
}
|
|
|
|
/**
|
|
* @return float
|
|
*/
|
|
public function getAmount(): float {
|
|
return $this->amount;
|
|
}
|
|
}
|