You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Connection.php
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -281,6 +281,11 @@ class Connection extends Component
281
281
* @var float timeout to use for redis socket when reading and writing data. If not set the php default value will be used.
282
282
*/
283
283
public$dataTimeout;
284
+
/**
285
+
* @var boolean Send sockets over SSL protocol. Default state is false.
286
+
* @since 2.0.12
287
+
*/
288
+
public$useSSL = false;
284
289
/**
285
290
* @var integer Bitmask field which may be set to any combination of connection flags passed to [stream_socket_client()](https://www.php.net/manual/en/function.stream-socket-client.php).
286
291
* Currently the select of connection flags is limited to `STREAM_CLIENT_CONNECT` (default), `STREAM_CLIENT_ASYNC_CONNECT` and `STREAM_CLIENT_PERSISTENT`.
0 commit comments