LocalizedDateToUtcConverterInterface.php 457 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Framework\Stdlib\DateTime\Timezone;
  8. /*
  9. * Interface for converting localized date to UTC
  10. */
  11. interface LocalizedDateToUtcConverterInterface
  12. {
  13. /**
  14. * Convert localized date to UTC
  15. *
  16. * @param string $date
  17. * @return string
  18. */
  19. public function convertLocalizedDateToUtc($date);
  20. }