Completed
Branch master (bb6f05)
by
unknown
31:42
created
includes/specials/SpecialTags.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -172,6 +172,11 @@  discard block
 block discarded – undo
172 172
 		) );
173 173
 	}
174 174
 
175
+	/**
176
+	 * @param boolean $showManageActions
177
+	 * @param boolean $showDeleteActions
178
+	 * @param boolean $showEditLinks
179
+	 */
175 180
 	function doTagRow( $tag, $hitcount, $showManageActions, $showDeleteActions, $showEditLinks ) {
176 181
 		$newRow = '';
177 182
 		$newRow .= Xml::tags( 'td', null, Xml::element( 'code', null, $tag ) );
@@ -320,6 +325,9 @@  discard block
 block discarded – undo
320 325
 		}
321 326
 	}
322 327
 
328
+	/**
329
+	 * @param null|string $tag
330
+	 */
323 331
 	protected function showDeleteTagForm( $tag ) {
324 332
 		$user = $this->getUser();
325 333
 		if ( !$user->isAllowed( 'deletechangetags' ) ) {
@@ -378,6 +386,10 @@  discard block
 block discarded – undo
378 386
 		$form->show();
379 387
 	}
380 388
 
389
+	/**
390
+	 * @param null|string $tag
391
+	 * @param boolean $activate
392
+	 */
381 393
 	protected function showActivateDeactivateForm( $tag, $activate ) {
382 394
 		$actionStr = $activate ? 'activate' : 'deactivate';
383 395
 
Please login to merge, or discard this patch.