Skip to content

Commit

Permalink
Merge pull request #1670 from SemanticMediaWiki/SMW_Sql3SmwIds
Browse files Browse the repository at this point in the history
Removed void returns in SMW_Sql3SmwIds
  • Loading branch information
mwjames committed Jun 18, 2016
2 parents b2ebaf4 + 5c6e369 commit c504c1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/storage/SQLStore/SMW_Sql3SmwIds.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public function findRedirectIdFor( $title, $namespace ) {
* @param integer $namespace
*/
public function addRedirectForId( $id, $title, $namespace ) {
return $this->redirectInfoStore->addRedirectForId( $id, $title, $namespace );
$this->redirectInfoStore->addRedirectForId( $id, $title, $namespace );
}

/**
Expand All @@ -289,7 +289,7 @@ public function addRedirectForId( $id, $title, $namespace ) {
* @param integer $namespace
*/
public function deleteRedirectEntry( $title, $namespace ) {
return $this->redirectInfoStore->deleteRedirectEntry( $title, $namespace );
$this->redirectInfoStore->deleteRedirectEntry( $title, $namespace );
}

/**
Expand Down

0 comments on commit c504c1d

Please sign in to comment.