| @@ -26,6 +26,9 @@ | ||
| 26 | 26 | |
| 27 | 27 | protected $m_date; // the Julian day | 
| 28 | 28 | |
| 29 | + /** | |
| 30 | + * @param integer $day | |
| 31 | + */ | |
| 29 | 32 |  	function create( $year, $month, $day ) { | 
| 30 | 33 | if ( $year < 1582 || | 
| 31 | 34 |  			( $year == 1582 && ( $month < 10 || ( $month == 10 && $day < 15 ) ) ) ) { | 
| @@ -51,7 +51,7 @@ | ||
| 51 | 51 | * @since 1.8 | 
| 52 | 52 | * | 
| 53 | 53 | * @param SMWQueryResult $result | 
| 54 | - * @param $outputMode | |
| 54 | + * @param integer $outputMode | |
| 55 | 55 | * | 
| 56 | 56 | * @return array | 
| 57 | 57 | */ | 
| @@ -136,7 +136,6 @@ | ||
| 136 | 136 | * | 
| 137 | 137 | * @since 1.8 | 
| 138 | 138 | * | 
| 139 | - * @param array $data | |
| 140 | 139 | * @param $minValue | 
| 141 | 140 | * @param $maxValue | 
| 142 | 141 | * | 
| @@ -45,7 +45,6 @@ discard block | ||
| 45 | 45 | * | 
| 46 | 46 | * @since 1.8 | 
| 47 | 47 | * | 
| 48 | - * @param SMWQueryResult $result | |
| 49 | 48 | * @param $outputMode | 
| 50 | 49 | * | 
| 51 | 50 | * @return array | 
| @@ -250,7 +249,6 @@ discard block | ||
| 250 | 249 | * | 
| 251 | 250 | * @since 1.8 | 
| 252 | 251 | * | 
| 253 | - * @param array $data | |
| 254 | 252 | * | 
| 255 | 253 | * @return string | 
| 256 | 254 | */ | 
| @@ -38,6 +38,7 @@ | ||
| 38 | 38 | |
| 39 | 39 | /** | 
| 40 | 40 | * @see SMWResultPrinter::getResultText() | 
| 41 | + * @param integer $outputmode | |
| 41 | 42 | */ | 
| 42 | 43 |  	protected function getResultText( SMWQueryResult $res, $outputmode ) { | 
| 43 | 44 | $numbers = $this->getNumbers( $res ); | 
| @@ -28,7 +28,6 @@ | ||
| 28 | 28 | * @see SMWResultPrinter::getResultText | 
| 29 | 29 | * | 
| 30 | 30 | * @param SMWQueryResult $res | 
| 31 | - * @param array $params | |
| 32 | 31 | * @param $outputmode | 
| 33 | 32 | * | 
| 34 | 33 | * @return string | 
| @@ -77,6 +77,7 @@ | ||
| 77 | 77 | * @see SMWResultPrinter::getResultText() | 
| 78 | 78 | * | 
| 79 | 79 | * @todo Split up megamoth | 
| 80 | + * @param integer $outputmode | |
| 80 | 81 | */ | 
| 81 | 82 |  	protected function getResultText( SMWQueryResult $res, $outputmode ) { | 
| 82 | 83 | $events = []; | 
| @@ -56,6 +56,7 @@ | ||
| 56 | 56 | |
| 57 | 57 | /** | 
| 58 | 58 | * @param SMWQueryResult | null $queryResult | 
| 59 | + * @param SMWQueryResult|null $queryResult | |
| 59 | 60 | */ | 
| 60 | 61 |  	public function setQueryResult( $queryResult ) { | 
| 61 | 62 | $this->queryResult = $queryResult; | 
| @@ -146,7 +146,7 @@ discard block | ||
| 146 | 146 | * | 
| 147 | 147 | * @param &$vars Array of variables to be added into the output of the startup module. | 
| 148 | 148 | * | 
| 149 | - * @return true | |
| 149 | + * @return boolean | |
| 150 | 150 | */ | 
| 151 | 151 |  	public static function onResourceLoaderGetConfigVars( &$vars ) { | 
| 152 | 152 | |
| @@ -167,7 +167,7 @@ discard block | ||
| 167 | 167 | * @param OutputPage $outputPage | 
| 168 | 168 | * @param Skin $skin | 
| 169 | 169 | * | 
| 170 | - * @return true | |
| 170 | + * @return boolean | |
| 171 | 171 | */ | 
| 172 | 172 |  	public static function onBeforePageDisplay ( &$outputPage, &$skin ) { | 
| 173 | 173 | |
| @@ -183,7 +183,7 @@ discard block | ||
| 183 | 183 | * @param User $user | 
| 184 | 184 | * @param array $preferences | 
| 185 | 185 | * | 
| 186 | - * @return true | |
| 186 | + * @return boolean | |
| 187 | 187 | */ | 
| 188 | 188 |  	public static function onGetPreferences( $user, &$preferences ) { | 
| 189 | 189 | |