diff --git a/CHANGELOG.md b/CHANGELOG.md index f1bcdfa..9eb630a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ Bearbeitung mit RexStan und Bereinigung diverser Fehler. Das alles führt zu ein - Klasse `Geolocation\tools` umbenannt in `Geolocation\Tools`; Aufrufe und Doku angepasst. (#53) - Klasse `Geolocation\config_form` umbenannt in `Geolocation\ConfigForm`; Aufrufe und Doku angepasst. (#66) - Dateinamen `lib/exception.php` an den Klassennamen angeglichen (`lib/exception.php`) (#73) -- RexStan-gesteuerte Überarbeitung aller PHP-Dateien (Level: 8, PHP: 8.0-8.2, Extensions: REDAXO Superglobals, Bleeding-Edge, Strict-Mode, Deprecation Warnings, phpstan-dba, dead code) und Code-Formatierung im REDAXO-Standard (#54 … #62, #66, #68, #70 … #72) +- RexStan-gesteuerte Überarbeitung aller PHP-Dateien (Level: 8, PHP: 8.0-8.2, Extensions: REDAXO Superglobals, Bleeding-Edge, Strict-Mode, Deprecation Warnings, phpstan-dba, dead code) und Code-Formatierung im REDAXO-Standard (#54 … #62, #66, #68, #70 … #72, #74) ## 06.05.2022 1.0.2 diff --git a/lib/Exception.php b/lib/Exception.php index 35de9de..14b63fa 100644 --- a/lib/Exception.php +++ b/lib/Exception.php @@ -1,13 +1,13 @@ - Geolocation\Exception - * - * @package geolocation + * => Geolocation\Exception. */ -class Exception extends \RuntimeException -{ +namespace Geolocation; +use RuntimeException; + +class Exception extends RuntimeException +{ }