diff options
Diffstat (limited to 'libs/path-converter/src/NoConverter.php')
-rwxr-xr-x | libs/path-converter/src/NoConverter.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libs/path-converter/src/NoConverter.php b/libs/path-converter/src/NoConverter.php new file mode 100755 index 00000000..2fcfd0f2 --- /dev/null +++ b/libs/path-converter/src/NoConverter.php @@ -0,0 +1,23 @@ +<?php + +namespace MatthiasMullie\PathConverter; + +/** + * Don't convert paths. + * + * Please report bugs on https://github.com/matthiasmullie/path-converter/issues + * + * @author Matthias Mullie <pathconverter@mullie.eu> + * @copyright Copyright (c) 2015, Matthias Mullie. All rights reserved + * @license MIT License + */ +class NoConverter implements ConverterInterface +{ + /** + * {@inheritdoc} + */ + public function convert($path) + { + return $path; + } +} |