Open Journal Systems  3.3.0
vendor/omnipay/common/src/Common/PaymentMethod.php
1 <?php
6 namespace Omnipay\Common;
7 
14 class PaymentMethod
15 {
16 
23  protected $id;
24 
30  protected $name;
31 
38  public function __construct($id, $name)
39  {
40  $this->id = $id;
41  $this->name = $name;
42  }
43 
49  public function getId()
50  {
51  return $this->id;
52  }
53 
59  public function getName()
60  {
61  return $this->name;
62  }
63 }
Omnipay\Common\PaymentMethod\$name
$name
Definition: lib/vendor/omnipay/common/src/Omnipay/Common/PaymentMethod.php:39
Omnipay\Common\PaymentMethod\getName
getName()
Definition: vendor/omnipay/common/src/Common/PaymentMethod.php:65
Omnipay\Common\PaymentMethod\__construct
__construct($id, $name)
Definition: vendor/omnipay/common/src/Common/PaymentMethod.php:44
Omnipay\Common
Definition: lib/vendor/omnipay/common/src/Omnipay/Common/AbstractGateway.php:6
Omnipay\Common\PaymentMethod\getId
getId()
Definition: vendor/omnipay/common/src/Common/PaymentMethod.php:55
Omnipay\Common\PaymentMethod\$id
$id
Definition: lib/vendor/omnipay/common/src/Omnipay/Common/PaymentMethod.php:29