Skip to content

Commit

Permalink
Remove unused boolean from docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioribeiro committed Jun 20, 2017
1 parent 5cd0677 commit d0d56c9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Google2FA.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public function setWindow($window)
* @param string $key - User specified key
* @param null|string $secret
* @param null|int $window
* @param bool|int $timestamp
* @param null|int $timestamp
* @param null|int $oldTimestamp
*
* @return bool|int
Expand All @@ -339,7 +339,7 @@ public function verify($key, $secret = null, $window = null, $timestamp = null,
* @param string $secret
* @param string $key - User specified key
* @param null|int $window
* @param bool|int $timestamp
* @param null|int $timestamp
* @param null|int $oldTimestamp
*
* @return bool|int
Expand Down Expand Up @@ -372,11 +372,11 @@ public function verifyKey($secret, $key, $window = null, $timestamp = null, $old
* the given oldTimestamp. Useful if you need to ensure that a single key cannot
* be used twice.
*
* @param string $secret
* @param string $key - User specified key
* @param int $oldTimestamp - The timestamp from the last verified key
* @param int $window
* @param bool $timestamp
* @param string $secret
* @param string $key - User specified key
* @param int $oldTimestamp - The timestamp from the last verified key
* @param int|null $window
* @param int|null $timestamp
*
* @return bool|int - false (not verified) or the timestamp of the verified key
**/
Expand Down

0 comments on commit d0d56c9

Please sign in to comment.