Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-signifyd
Model
PredefinedVerificationCode.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Signifyd\Model
;
7
8
use
Magento\Payment\Api\PaymentVerificationInterface
;
9
use
Magento\Sales\Api\Data\OrderPaymentInterface
;
10
15
class
PredefinedVerificationCode
implements
PaymentVerificationInterface
16
{
20
private
$code;
21
25
public
function
__construct
($code =
''
)
26
{
27
$this->code = $code;
28
}
29
33
public
function
getCode
(
OrderPaymentInterface
$orderPayment)
34
{
35
return
$this->code;
36
}
37
}
Magento\Sales\Api\Data\OrderPaymentInterface
Definition:
OrderPaymentInterface.php:17
Magento\Payment\Api\PaymentVerificationInterface
Definition:
PaymentVerificationInterface.php:24
Magento\Signifyd\Model\PredefinedVerificationCode\getCode
getCode(OrderPaymentInterface $orderPayment)
Definition:
PredefinedVerificationCode.php:33
Magento\Signifyd\Model
Definition:
CaseManagementTest.php:6
Magento\Signifyd\Model\PredefinedVerificationCode
Definition:
PredefinedVerificationCode.php:15
Magento\Signifyd\Model\PredefinedVerificationCode\__construct
__construct($code='')
Definition:
PredefinedVerificationCode.php:25