Datashare.php 460 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Config category field backend
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Config\Model\Config\Backend;
  12. /**
  13. * @api
  14. * @since 100.0.2
  15. */
  16. class Datashare extends \Magento\Framework\App\Config\Value
  17. {
  18. /**
  19. * @return $this
  20. */
  21. public function afterSave()
  22. {
  23. return $this;
  24. }
  25. }