From 9ae185c18eb06e3ce7e2daea0c61e6f6478bdca9 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 25 Jul 2019 11:16:21 -0700 Subject: Remove dependency on Sass - Convert *.sass files to vanilla CSS - Start using CSS variables - Add PHP minifier --- libs/path-converter/src/ConverterInterface.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 libs/path-converter/src/ConverterInterface.php (limited to 'libs/path-converter/src/ConverterInterface.php') diff --git a/libs/path-converter/src/ConverterInterface.php b/libs/path-converter/src/ConverterInterface.php new file mode 100755 index 00000000..dc1b7657 --- /dev/null +++ b/libs/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