@@ -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 = ''; |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use SIL\PropertyRegistry; |
6 | 6 | use SMW\PropertyRegistry as SemanticMediaWikiPropertyRegistry; |
7 | -use SMW\DIProperty; |
|
8 | 7 | |
9 | 8 | /** |
10 | 9 | * @covers \SIL\PropertyRegistry |