From 3ba8b70bd183de06138745ef1a24d7a93097d587 Mon Sep 17 00:00:00 2001 From: marvin-borner@live.com Date: Fri, 13 Apr 2018 18:07:12 +0200 Subject: added minifying support -- needs optimization though --- .../path-converter/src/ConverterInterface.php | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 assets/php/vendor/matthiasmullie/path-converter/src/ConverterInterface.php (limited to 'assets/php/vendor/matthiasmullie/path-converter/src/ConverterInterface.php') diff --git a/assets/php/vendor/matthiasmullie/path-converter/src/ConverterInterface.php b/assets/php/vendor/matthiasmullie/path-converter/src/ConverterInterface.php new file mode 100644 index 0000000..dc1b765 --- /dev/null +++ b/assets/php/vendor/matthiasmullie/path-converter/src/ConverterInterface.php @@ -0,0 +1,24 @@ + + * @copyright Copyright (c) 2015, Matthias Mullie. All rights reserved + * @license MIT License + */ +interface ConverterInterface +{ + /** + * Convert file paths. + * + * @param string $path The path to be converted + * + * @return string The new path + */ + public function convert($path); +} -- cgit v1.2.3