diff options
Diffstat (limited to 'vendor/sabre/xml/lib/ParseException.php')
-rw-r--r-- | vendor/sabre/xml/lib/ParseException.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vendor/sabre/xml/lib/ParseException.php b/vendor/sabre/xml/lib/ParseException.php index 3a6883b2f..e237b8732 100644 --- a/vendor/sabre/xml/lib/ParseException.php +++ b/vendor/sabre/xml/lib/ParseException.php @@ -1,9 +1,10 @@ <?php +declare(strict_types=1); + namespace Sabre\Xml; -use - Exception; +use Exception; /** * This is a base exception for any exception related to parsing xml files. @@ -12,6 +13,6 @@ use * @author Evert Pot (http://evertpot.com/) * @license http://sabre.io/license/ Modified BSD License */ -class ParseException extends Exception { - +class ParseException extends Exception +{ } |