Skip to content

Commit

Permalink
return type void is not allowed for php7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
susgo committed Jul 6, 2020
1 parent d139805 commit 131132d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/base/RecoveryCodeCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function getCodes(): array
return $this->codes;
}

public function setCount(int $count): void
public function setCount(int $count)
{
$this->count = $count;
}
Expand All @@ -33,7 +33,7 @@ public function getCount(): int
return $this->count;
}

public function setBlocks(int $blocks): void
public function setBlocks(int $blocks)
{
$this->blocks = $blocks;
}
Expand All @@ -43,7 +43,7 @@ public function getBlocks(): int
return $this->blocks;
}

public function setBlockLength(int $length): void
public function setBlockLength(int $length)
{
$this->blockLength = $length;
}
Expand All @@ -53,7 +53,7 @@ public function getBlockLength(): int
return $this->blockLength;
}

public function setBlockSeparator(string $separator): void
public function setBlockSeparator(string $separator)
{
$this->blockSeparator = $separator;
}
Expand Down

0 comments on commit 131132d

Please sign in to comment.