diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
commit | c9aa36da061816dee256a979c2ff8d2ee41824d9 (patch) | |
tree | 29f7002b80ee984b488bd047dbbd80b36bf892e9 /includes/logging/PatrolLog.php | |
parent | b4274e0e33eafb5e9ead9d949ebf031a9fb8363b (diff) | |
parent | d1ba966140d7a60cd5ae4e8667ceb27c1a138592 (diff) |
Merge branch 'archwiki'
# Conflicts:
# skins/ArchLinux.php
# skins/ArchLinux/archlogo.gif
Diffstat (limited to 'includes/logging/PatrolLog.php')
-rw-r--r-- | includes/logging/PatrolLog.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/includes/logging/PatrolLog.php b/includes/logging/PatrolLog.php index bb76d5a9..4f2a565d 100644 --- a/includes/logging/PatrolLog.php +++ b/includes/logging/PatrolLog.php @@ -27,13 +27,12 @@ * logs of patrol events */ class PatrolLog { - /** * Record a log event for a change being patrolled * - * @param $rc Mixed: change identifier or RecentChange object - * @param $auto Boolean: was this patrol event automatic? - * @param $user User: user performing the action or null to use $wgUser + * @param int|RecentChange $rc Change identifier or RecentChange object + * @param bool $auto Was this patrol event automatic? + * @param User $user User performing the action or null to use $wgUser * * @return bool */ @@ -65,15 +64,16 @@ class PatrolLog { if ( !$auto ) { $entry->publish( $logid, 'udp' ); } + return true; } /** * Prepare log parameters for a patrolled change * - * @param $change RecentChange to represent - * @param $auto Boolean: whether the patrol event was automatic - * @return Array + * @param RecentChange $change RecentChange to represent + * @param bool $auto Whether the patrol event was automatic + * @return array */ private static function buildParams( $change, $auto ) { return array( @@ -82,5 +82,4 @@ class PatrolLog { '6::auto' => (int)$auto ); } - } |