NoConverter.php 473 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace MatthiasMullie\PathConverter;
  3. /**
  4. * Don't convert paths.
  5. *
  6. * Please report bugs on https://github.com/matthiasmullie/path-converter/issues
  7. *
  8. * @author Matthias Mullie <pathconverter@mullie.eu>
  9. * @copyright Copyright (c) 2015, Matthias Mullie. All rights reserved
  10. * @license MIT License
  11. */
  12. class NoConverter implements ConverterInterface
  13. {
  14. /**
  15. * {@inheritdoc}
  16. */
  17. public function convert($path)
  18. {
  19. return $path;
  20. }
  21. }