Completed
Push — master ( 60eddc...63e762 )
by Matthias
02:36 queued 24s
created

src/Exceptions/BasicException.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace MatthiasMullie\Minify\Exceptions;
4
5
use MatthiasMullie\Minify\Exception;
6
7
/**
8
 * @author Matthias Mullie <[email protected]>
9
 */
10
abstract class BasicException extends Exception
0 ignored issues
show
Deprecated Code introduced by
The class MatthiasMullie\Minify\Exception has been deprecated with message: Use Exceptions\BasicException instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
11
{
12
}
13