123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Paypal\Model\System\Config\Source;
- /**
- * Source model for available payment actions
- */
- class PaymentActions implements \Magento\Framework\Option\ArrayInterface
- {
- /**
- * @var \Magento\Paypal\Model\ConfigFactory
- */
- protected $_configFactory;
- /**
- * @param \Magento\Paypal\Model\ConfigFactory $configFactory
- */
- public function __construct(\Magento\Paypal\Model\ConfigFactory $configFactory)
- {
- $this->_configFactory = $configFactory;
- }
- /**
- * {@inheritdoc}
- */
- public function toOptionArray()
- {
- return $this->_configFactory->create()->getPaymentActions();
- }
- }
|