* @copyright Copyright (c) 2015, Matthias Mullie. All rights reserved * @license MIT License */ class NoConverter implements ConverterInterface { /** * {@inheritdoc} */ public function convert($path) { return $path; } }