Like setProperty(), this should not return a value

This commit is contained in:
Samuel Georges 2016-02-17 17:49:52 +11:00
parent 3ee2ec86f8
commit 54d749f034
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ trait PropertyContainer
*/
public function setProperties($properties)
{
return $this->properties = $this->validateProperties($properties);
$this->properties = $this->validateProperties($properties);
}
/**