Make lines short to pass phpcs in 2 files under tests/phpunit/includes/
[lhc/web/wiklou.git] / tests / phpunit / maintenance / backup_LogTest.php
index 438281d..7ca4596 100644 (file)
@@ -8,7 +8,6 @@
  */
 class BackupDumperLoggerTest extends DumpTestCase {
 
-
        // We'll add several log entries and users for this test. The following
        // variables hold the corresponding ids.
        private $userId1, $userId2;
@@ -17,16 +16,15 @@ class BackupDumperLoggerTest extends DumpTestCase {
        /**
         * adds a log entry to the database.
         *
-        * @param $type string: type of the log entry
-        * @param $subtype string: subtype of the log entry
-        * @param $user User: user that performs the logged operation
-        * @param $ns int: number of the namespace for the entry's target's title
-        * @param $title string: title of the entry's target
-        * @param $comment string: comment of the log entry
-        * @param $parameters Array: (optional) accompanying data that is attached
-        *               to the entry
+        * @param string $type Type of the log entry
+        * @param string $subtype Subtype of the log entry
+        * @param User $user User that performs the logged operation
+        * @param int $ns Number of the namespace for the entry's target's title
+        * @param string $title Title of the entry's target
+        * @param string $comment Comment of the log entry
+        * @param array $parameters (optional) accompanying data that is attached to the entry
         *
-        * @return int id of the added log entry
+        * @return int Id of the added log entry
         */
        private function addLogEntry( $type, $subtype, User $user, $ns, $title,
                $comment = null, $parameters = null
@@ -85,20 +83,18 @@ class BackupDumperLoggerTest extends DumpTestCase {
                }
        }
 
-
        /**
         * asserts that the xml reader is at the beginning of a log entry and skips over
         * it while analyzing it.
         *
-        * @param $id int: id of the log entry
-        * @param $user_name string: user name of the log entry's performer
-        * @param $user_id int: user id of the log entry 's performer
-        * @param $comment string|null: comment of the log entry. If null, the comment
-        *             text is ignored.
-        * @param $type string: type of the log entry
-        * @param $subtype string: subtype of the log entry
-        * @param $title string: title of the log entry's target
-        * @param $parameters array: (optional) unserialized data accompanying the log entry
+        * @param int $id Id of the log entry
+        * @param string $user_name User name of the log entry's performer
+        * @param int $user_id User id of the log entry 's performer
+        * @param string|null $comment Comment of the log entry. If null, the comment text is ignored.
+        * @param string $type Type of the log entry
+        * @param string $subtype Subtype of the log entry
+        * @param string $title Title of the log entry's target
+        * @param array $parameters (optional) unserialized data accompanying the log entry
         */
        private function assertLogItem( $id, $user_name, $user_id, $comment, $type,
                $subtype, $title, $parameters = array()