[Mailer] fixed timeout type hint

This commit is contained in:
Fabien Potencier 2019-06-27 10:51:02 +02:00
parent e55978ada8
commit 0e7ed9e45c
1 changed files with 2 additions and 2 deletions

View File

@ -34,14 +34,14 @@ final class SocketStream extends AbstractStream
private $sourceIp;
private $streamContextOptions = [];
public function setTimeout(int $timeout): self
public function setTimeout(float $timeout): self
{
$this->timeout = $timeout;
return $this;
}
public function getTimeout(): int
public function getTimeout(): float
{
return $this->timeout;
}