Declared _add() and _remove() as protected
authorAlexander Ebert <ebert@woltlab.com>
Mon, 11 Jun 2012 17:25:17 +0000 (19:25 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Mon, 11 Jun 2012 17:25:17 +0000 (19:25 +0200)
wcfsetup/install/files/lib/system/log/modification/ModificationLogHandler.class.php

index 85cf43a755bfd04eacbcb634a7a705e2015a7f9e..41698d498027fc1f49443caa3aeed3fe84015473 100644 (file)
@@ -59,7 +59,7 @@ class ModificationLogHandler extends SingletonFactory {
         * @param       string          $username
         * @return      wcf\data\modification\log\ModificationLog
         */
-       public function add($objectType, $objectID, $action, array $additionalData = array(), $time = TIME_NOW, $userID = null, $username = null) {
+       protected function _add($objectType, $objectID, $action, array $additionalData = array(), $time = TIME_NOW, $userID = null, $username = null) {
                $objectType = $this->getObjectType($objectType);
                if ($objectType === null) {
                        throw new SystemException("Object type '".$objectType."' not found within definition 'com.woltlab.wcf.modifiableContent'");
@@ -81,7 +81,7 @@ class ModificationLogHandler extends SingletonFactory {
         * @param       string          $objectType
         * @param       array<integer>  $objectIDs
         */
-       public function remove($objectType, array $objectIDs) {
+       protected function _remove($objectType, array $objectIDs) {
                $objectType = $this->getObjectType($objectType);
                if ($objectType === null) {
                        throw new SystemException("Object type '".$objectType."' not found within definition 'com.woltlab.wcf.modifiableContent'");