Completed
Push — master ( 4d6952...e5ccb0 )
by
unknown
19:34
created
src/HookRegistry.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -84,6 +84,11 @@
 block discarded – undo
84 84
 		);
85 85
 	}
86 86
 
87
+	/**
88
+	 * @param Store $store
89
+	 * @param Cache $cache
90
+	 * @param CacheKeyProvider $cacheKeyProvider
91
+	 */
87 92
 	private function addCallbackHandlers( $store, $cache, $cacheKeyProvider ) {
88 93
 
89 94
 		$languageTargetLinksCache = new LanguageTargetLinksCache(
Please login to merge, or discard this patch.
src/Category/LanguageFilterCategoryViewer.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -18,6 +18,8 @@  discard block
 block discarded – undo
18 18
 
19 19
 	/**
20 20
 	 * @see CategoryViewer::addImage
21
+	 * @param string $sortkey
22
+	 * @param string $pageLength
21 23
 	 */
22 24
 	public function addImage( Title $title, $sortkey, $pageLength, $isRedirect = false ) {
23 25
 
@@ -30,6 +32,8 @@  discard block
 block discarded – undo
30 32
 
31 33
 	/**
32 34
 	 * @see CategoryViewer::addSubcategoryObject
35
+	 * @param string $sortkey
36
+	 * @param string $pageLength
33 37
 	 */
34 38
 	public function addSubcategoryObject( Category $cat, $sortkey, $pageLength ) {
35 39
 
@@ -42,6 +46,8 @@  discard block
 block discarded – undo
42 46
 
43 47
 	/**
44 48
 	 * @see CategoryViewer::addPage
49
+	 * @param string $sortkey
50
+	 * @param string $pageLength
45 51
 	 */
46 52
 	public function addPage( $title, $sortkey, $pageLength, $isRedirect = false ) {
47 53
 
Please login to merge, or discard this patch.
src/AnnotatedLanguageParserFunction.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -62,6 +62,10 @@
 block discarded – undo
62 62
 		return array( $templateText, 'noparse' => $templateText === '', 'isHTML' => false );
63 63
 	}
64 64
 
65
+	/**
66
+	 * @param string $languageCode
67
+	 * @param string $template
68
+	 */
65 69
 	private function createTemplateInclusionCode( $source, $languageCode, $template ) {
66 70
 
67 71
 		$result = '';
Please login to merge, or discard this patch.