diff options
| author | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
|---|---|---|
| committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
| commit | 9ae185c18eb06e3ce7e2daea0c61e6f6478bdca9 (patch) | |
| tree | ace22189e031f7f78639f743a872d86c3a65eda0 /libs/minify/src/Exceptions/BasicException.php | |
| parent | 2bf0f99b519aec5b2068a689a8051d88154e3850 (diff) | |
Remove dependency on Sass
- Convert *.sass files to vanilla CSS
- Start using CSS variables
- Add PHP minifier
Diffstat (limited to 'libs/minify/src/Exceptions/BasicException.php')
| -rwxr-xr-x | libs/minify/src/Exceptions/BasicException.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libs/minify/src/Exceptions/BasicException.php b/libs/minify/src/Exceptions/BasicException.php new file mode 100755 index 00000000..af5e81bc --- /dev/null +++ b/libs/minify/src/Exceptions/BasicException.php @@ -0,0 +1,23 @@ +<?php +/** + * Basic exception + * + * Please report bugs on https://github.com/matthiasmullie/minify/issues + * + * @author Matthias Mullie <minify@mullie.eu> + * @copyright Copyright (c) 2012, Matthias Mullie. All rights reserved + * @license MIT License + */ +namespace MatthiasMullie\Minify\Exceptions; + +use MatthiasMullie\Minify\Exception; + +/** + * Basic Exception Class + * + * @package Minify\Exception + * @author Matthias Mullie <minify@mullie.eu> + */ +abstract class BasicException extends Exception +{ +} |
