| Current Path : /home/rtorresani/www/vendor/magento/module-payment/Ui/Component/Listing/Column/Method/ |
| Current File : //home/rtorresani/www/vendor/magento/module-payment/Ui/Component/Listing/Column/Method/Options.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Payment\Ui\Component\Listing\Column\Method;
/**
* Class Options for Listing Column Method
*/
class Options implements \Magento\Framework\Data\OptionSourceInterface
{
/**
* @var array
*/
protected $options;
/**
* @var \Magento\Payment\Helper\Data
*/
protected $paymentHelper;
/**
* Constructor
*
* @param \Magento\Payment\Helper\Data $paymentHelper
*/
public function __construct(
\Magento\Payment\Helper\Data $paymentHelper
) {
$this->paymentHelper = $paymentHelper;
}
/**
* Get options
*
* @return array
*/
public function toOptionArray()
{
if ($this->options === null) {
$this->options = $this->paymentHelper->getPaymentMethodList(true, true);
}
return $this->options;
}
}