Skip to content

Commit

Permalink
CORE-1313 Fixed some minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasnyulas committed Jan 9, 2018
1 parent 0ee29f0 commit 75d27e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function read($key, $typeName = null, $indexName = null)
*/
public function write(array $dataSet, $typeName = null, $indexName = null)
{
$this->searchClient->write($dataSet, $typeName, $indexName);
return $this->searchClient->write($dataSet, $typeName, $indexName);
}

/**
Expand All @@ -55,6 +55,6 @@ public function write(array $dataSet, $typeName = null, $indexName = null)
*/
public function delete(array $dataSet, $typeName = null, $indexName = null)
{
$this->searchClient->delete($dataSet, $typeName, $indexName);
return $this->searchClient->delete($dataSet, $typeName, $indexName);
}
}

0 comments on commit 75d27e8

Please sign in to comment.