Completed
Pull Request — master (#53)
by
unknown
04:52
created
src/Bibtex/BibtexAuthorListParser.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -95,6 +95,11 @@  discard block
 block discarded – undo
95 95
 		return $authorList;
96 96
 	}
97 97
 
98
+	/**
99
+	 * @param string $firstname
100
+	 * @param string $initials
101
+	 * @param string $surname
102
+	 */
98 103
 	private function concatenate( $firstname, $initials, $surname, $prefix ) {
99 104
 
100 105
 		$author = [
@@ -109,6 +114,7 @@  discard block
 block discarded – undo
109 114
 
110 115
 	/**
111 116
 	 * @note firstname and initials which may be of form "A.B.C." or "A. B. C. " or " A B C " etc.
117
+	 * @param string $remainder
112 118
 	 */
113 119
 	private function grabFirstnameInitials( $remainder ) {
114 120
 
Please login to merge, or discard this patch.
src/CitationReferencePositionJournal.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,6 @@  discard block
 block discarded – undo
44 44
 	/**
45 45
 	 * @since 1.0
46 46
 	 *
47
-	 * @param DIWikiPage $subject
48 47
 	 *
49 48
 	 * @return boolean
50 49
 	 */
@@ -187,6 +186,9 @@  discard block
 block discarded – undo
187 186
 		);
188 187
 	}
189 188
 
189
+	/**
190
+	 * @param string $hash
191
+	 */
190 192
 	private function hasJournalForHash( $hash ) {
191 193
 
192 194
 		if ( self::$citationReferenceJournal === [] ) {
Please login to merge, or discard this patch.
src/Specials/CitableMetadata/PageBuilder.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -134,6 +134,14 @@  discard block
 block discarded – undo
134 134
 		return $this->doRenderHtml( $type, $id, $success, $text, $log, $matches );
135 135
 	}
136 136
 
137
+	/**
138
+	 * @param string $type
139
+	 * @param string $id
140
+	 * @param boolean $success
141
+	 * @param string $text
142
+	 * @param string $log
143
+	 * @param string $matches
144
+	 */
137 145
 	private function doRenderHtml( $type, $id, $success, $text, $log, $matches ) {
138 146
 
139 147
 		$htmlFormRenderer = $this->htmlFormRenderer;
@@ -196,6 +204,9 @@  discard block
 block discarded – undo
196 204
 		return $html . $htmlFormRenderer->getForm();
197 205
 	}
198 206
 
207
+	/**
208
+	 * @param string $matches
209
+	 */
199 210
 	private function prepareLog( $messages, $matches, $usesCache ) {
200 211
 
201 212
 		$messageBuilder = $this->htmlFormRenderer->getMessageBuilder();
@@ -231,6 +242,9 @@  discard block
 block discarded – undo
231 242
 		return $this->htmlColumnListRenderer->getHtml();
232 243
 	}
233 244
 
245
+	/**
246
+	 * @param \SMW\MediaWiki\MessageBuilder $messageBuilder
247
+	 */
234 248
 	private function getTypeIdIntroText( $messageBuilder ) {
235 249
 
236 250
 		$explain = [];
Please login to merge, or discard this patch.