Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Hostname.php
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public function getIdnCheck()
* @param bool $useIdnCheck Set to true to validate IDN domains
* @return Hostname
*/
public function useIdnCheck ($useIdnCheck)
public function useIdnCheck($useIdnCheck)
{
$this->options['useIdnCheck'] = (bool) $useIdnCheck;
return $this;
Expand All @@ -429,7 +429,7 @@ public function getTldCheck()
* @param bool $useTldCheck Set to true to validate TLD elements
* @return Hostname
*/
public function useTldCheck ($useTldCheck)
public function useTldCheck($useTldCheck)
{
$this->options['useTldCheck'] = (bool) $useTldCheck;
return $this;
Expand Down

0 comments on commit 1b49389

Please sign in to comment.