From 74e87032147c1c8b7994ece002b7650344ddb0ec Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Sat, 21 May 2016 20:45:46 +0200 Subject: [PATCH] Fix warnings about undefined classes --- .../install/files/lib/data/TLegacyUserPropertyAccess.class.php | 1 + .../html/input/node/HtmlInputNodeWoltlabMetacode.class.php | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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 @@