From: Alexander Ebert Date: Sat, 26 Mar 2016 18:13:22 +0000 (+0100) Subject: Fixed code style X-Git-Tag: 3.0.0_Beta_1~1286^2~28 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a33b5f5146e1751495451fe43ab82406f77af8cd;p=GitHub%2FWoltLab%2FWCF.git Fixed code style --- 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 @@