Version.php 523 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * This file is part of the Klarna KP module
  4. *
  5. * (c) Klarna Bank AB (publ)
  6. *
  7. * For the full copyright and license information, please view the NOTICE
  8. * and LICENSE files that were distributed with this source code.
  9. */
  10. namespace Klarna\Kp\Model\System\Config\Source;
  11. use Klarna\Core\Model\System\Config\Source\Base;
  12. /**
  13. * Class Version
  14. *
  15. * @package Klarna\Kp\Model\Config\Source
  16. */
  17. class Version extends Base
  18. {
  19. /**
  20. * @var string
  21. */
  22. protected $optionName = 'payments_api_versions';
  23. }