EncoderInterface.php 385 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Url;
  7. /**
  8. * Base64 encoder for URLs
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface EncoderInterface
  14. {
  15. /**
  16. * base64_encode() for URLs encoding
  17. *
  18. * @param string $url
  19. * @return string
  20. */
  21. public function encode($url);
  22. }