@@ -84,6 +84,11 @@ |
||
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( |
@@ -18,6 +18,8 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -62,6 +62,10 @@ |
||
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 = ''; |