Skip to content

Commit

Permalink
Merge pull request #1674 from SemanticMediaWiki/SMWSpecialBrowse
Browse files Browse the repository at this point in the history
Fixed return types in SMWSpecialBrowse
  • Loading branch information
mwjames committed Jun 18, 2016
2 parents f08df2e + 29e3537 commit 02a2e48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/specials/SMW_SpecialBrowse.php
Expand Up @@ -170,7 +170,7 @@ private function displayBrowse() {
* @param[in] $left bool Should properties be displayed on the left side?
* @param[in] $incoming bool Is this an incoming? Or an outgoing?
*
* @return A string containing the HTML with the factbox
* @return string A string containing the HTML with the factbox
*/
private function displayData( SMWSemanticData $data, $left = true, $incoming = false ) {
// Some of the CSS classes are different for the left or the right side.
Expand Down Expand Up @@ -304,7 +304,7 @@ private function displayValue( SMWPropertyValue $property, SMWDataValue $dataVal
/**
* Displays the subject that is currently being browsed to.
*
* @return A string containing the HTML with the subject line
* @return string A string containing the HTML with the subject line
*/
private function displayHead() {
global $wgOut;
Expand Down Expand Up @@ -455,7 +455,7 @@ private function getPropertyLabel( SMWPropertyValue $property, $incoming = false
/**
* Creates the query form in order to quickly switch to a specific article.
*
* @return A string containing the HTML for the form
* @return string A string containing the HTML for the form
*/
private function queryForm() {

Expand Down

0 comments on commit 02a2e48

Please sign in to comment.