Skip to content

Commit f8bb64b

Browse files
committed
修复
1 parent 820b47a commit f8bb64b

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/Model/Message.php

+9-3
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ public function getWorkingTimeout(): float
7878

7979
/**
8080
* {@inheritDoc}
81+
*
82+
* @param float $workingTimeout
8183
*/
82-
public function setWorkingTimeout(float $workingTimeout): void
84+
public function setWorkingTimeout($workingTimeout): void
8385
{
8486
$this->workingTimeout = (float) $workingTimeout;
8587
}
@@ -94,8 +96,10 @@ public function getRetryCount(): int
9496

9597
/**
9698
* {@inheritDoc}
99+
*
100+
* @param int $retryCount
97101
*/
98-
public function setRetryCount(int $retryCount): void
102+
public function setRetryCount($retryCount): void
99103
{
100104
$this->retryCount = (int) $retryCount;
101105
}
@@ -110,8 +114,10 @@ public function getMaxRetryCount(): int
110114

111115
/**
112116
* {@inheritDoc}
117+
*
118+
* @param int $maxRetryCount
113119
*/
114-
public function setMaxRetryCount(int $maxRetryCount): void
120+
public function setMaxRetryCount($maxRetryCount): void
115121
{
116122
$this->maxRetryCount = (int) $maxRetryCount;
117123
}

0 commit comments

Comments
 (0)