Moved minify to powers. Improved the mapper class.

This commit is contained in:
2023-01-08 12:01:14 +02:00
parent e771e7d243
commit e8abe8e3cf
42 changed files with 2874 additions and 930 deletions

View File

@ -0,0 +1,25 @@
<?php
/**
* IO 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 VDM\Minify\Exceptions;
use VDM\Minify\Abstraction\BasicException;
/**
* IO Exception Class.
*
* @author Matthias Mullie
*/
class IOException extends BasicException
{
}