Skip to content

Commit

Permalink
remove unneeded phpdoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemo64 committed Jul 19, 2020
1 parent 84530df commit be093b3
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/RdsDataConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,33 +230,21 @@ public function getTransactionId(): ?string
return $this->transactionId;
}

/**
* @return int
*/
public function getPauseRetries(): int
{
return $this->pauseRetries;
}

/**
* @param int $pauseRetries
*/
public function setPauseRetries(int $pauseRetries): void
{
$this->pauseRetries = $pauseRetries;
}

/**
* @return int
*/
public function getPauseRetryDelay(): int
{
return $this->pauseRetryDelay;
}

/**
* @param int $pauseRetryDelay
*/
public function setPauseRetryDelay(int $pauseRetryDelay): void
{
$this->pauseRetryDelay = $pauseRetryDelay;
Expand Down

0 comments on commit be093b3

Please sign in to comment.