20 lines
308 B
PHP
20 lines
308 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace App\Payment;
|
||
|
|
|
||
|
|
|
||
|
|
class CardRegistrationResponce extends PaymentResponse
|
||
|
|
{
|
||
|
|
|
||
|
|
public function isSuccessfull()
|
||
|
|
{
|
||
|
|
// TODO: Implement isSuccessfull() method.
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getPaymentReferenceId()
|
||
|
|
{
|
||
|
|
// TODO: Implement getPaymentReferenceId() method.
|
||
|
|
}
|
||
|
|
}
|