Port.php 440 B

1234567891011121314151617181920
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Config\Source\Transactional;
  3. class Port implements \Magento\Framework\Data\OptionSourceInterface
  4. {
  5. /**
  6. * Options getter.
  7. *
  8. * @return array
  9. */
  10. public function toOptionArray()
  11. {
  12. return [
  13. ['value' => '25', 'label' => '25'],
  14. ['value' => '2525', 'label' => '2525'],
  15. ['value' => '587', 'label' => '587'],
  16. ];
  17. }
  18. }