UrlMethod.php 460 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Paypal\Model\System\Config\Source;
  7. /**
  8. * Source model for url method: GET/POST
  9. */
  10. class UrlMethod implements \Magento\Framework\Option\ArrayInterface
  11. {
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function toOptionArray()
  16. {
  17. return [['value' => 'GET', 'label' => 'GET'], ['value' => 'POST', 'label' => 'POST']];
  18. }
  19. }