Skip to content

Commit 829273d

Browse files
committed
Check SYMPLIB_VERBOSITY in constructor
1 parent 4bf2da1 commit 829273d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/SocketStreamClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public function __construct(SocketAddress $address, int $recvBufSize = self::REC
1616
{
1717
$this->address = $address;
1818
$this->recvBufSize = $recvBufSize;
19+
$this->checkEnv();
1920
}
2021

2122
public function __destruct()

src/SocketStreamsServer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public function __construct(array $socketsData, int $recvBufSize = self::RECV_BU
2828
{
2929
$this->socketsData = $socketsData;
3030
$this->recvBufSize = $recvBufSize;
31+
$this->checkEnv();
3132
}
3233

3334

0 commit comments

Comments
 (0)