Skip to content

Commit

Permalink
Remove useless type for setter methods
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed Mar 8, 2016
1 parent c2b973c commit 3952b26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ public function setPath(string $sPath)
/**
* @param string $sPath Domain name (e.g., mysite.com).
*/
public function setDomain(string $sDomain) : string
public function setDomain(string $sDomain)
{
$this->sDomain = $sDomain;
}

/**
* @param bool $bIsSsl
*/
public function setIsSsl(bool $bIsSsl) : bool
public function setIsSsl(bool $bIsSsl)
{
$this->bIsSsl = $bIsSsl;
}
Expand Down

0 comments on commit 3952b26

Please sign in to comment.