From a33b5f5146e1751495451fe43ab82406f77af8cd Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Sat, 26 Mar 2016 19:13:22 +0100 Subject: [PATCH] Fixed code style --- .../lib/system/cache/runtime/AbstractRuntimeCache.class.php | 2 +- ...oderationQueueCommentResponseUserNotificationEvent.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/lib/system/cache/runtime/AbstractRuntimeCache.class.php b/wcfsetup/install/files/lib/system/cache/runtime/AbstractRuntimeCache.class.php index 4e237795ec..5061a706ad 100644 --- a/wcfsetup/install/files/lib/system/cache/runtime/AbstractRuntimeCache.class.php +++ b/wcfsetup/install/files/lib/system/cache/runtime/AbstractRuntimeCache.class.php @@ -132,7 +132,7 @@ abstract class AbstractRuntimeCache extends SingletonFactory implements IRuntime /** * @inheritDoc */ - public function removeObjects(array $objectIDs){ + public function removeObjects(array $objectIDs) { foreach ($objectIDs as $objectID) { if (array_key_exists($objectID, $this->objects)) { unset($this->objects[$objectID]); diff --git a/wcfsetup/install/files/lib/system/user/notification/event/ModerationQueueCommentResponseUserNotificationEvent.class.php b/wcfsetup/install/files/lib/system/user/notification/event/ModerationQueueCommentResponseUserNotificationEvent.class.php index d48413a6f9..5c75ad2f44 100644 --- a/wcfsetup/install/files/lib/system/user/notification/event/ModerationQueueCommentResponseUserNotificationEvent.class.php +++ b/wcfsetup/install/files/lib/system/user/notification/event/ModerationQueueCommentResponseUserNotificationEvent.class.php @@ -1,8 +1,8 @@