From: Matthias Schmidt Date: Sat, 21 May 2016 18:45:46 +0000 (+0200) Subject: Fix warnings about undefined classes X-Git-Tag: 3.0.0_Beta_1~1681^2~8 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=74e87032147c1c8b7994ece002b7650344ddb0ec;p=GitHub%2FWoltLab%2FWCF.git Fix warnings about undefined classes --- diff --git a/wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php b/wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php index e8d2cb2c4d..b47b141614 100644 --- a/wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php +++ b/wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php @@ -23,6 +23,7 @@ trait TLegacyUserPropertyAccess { * @return mixed */ public function __get($name) { + /** @noinspection PhpUndefinedClassInspection */ $value = parent::__get($name); if ($value !== null) { return $value; diff --git a/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php b/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php index a3c28b26b2..8b390352e6 100644 --- a/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php +++ b/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php @@ -1,7 +1,6 @@