Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
PredefinedVerificationCode.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Signifyd\Model;
7 
10 
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 }