Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
GroupList.php
Go to the documentation of this file.
1 <?php
7 
12 {
18  protected $paymentData;
19 
23  public function __construct(\Magento\Payment\Helper\Data $paymentData)
24  {
25  $this->paymentData = $paymentData;
26  }
27 
33  public function toOptionArray()
34  {
35  return $this->paymentData->getPaymentMethodList(true, true, true);
36  }
37 }
__construct(\Magento\Payment\Helper\Data $paymentData)
Definition: GroupList.php:23