Skip to content

Commit 48919ff

Browse files
fix invalid IP address
1 parent 94c8605 commit 48919ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/host-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Notice that the `ClientBuilder` object allows chaining method calls for brevity.
2929

3030
```php
3131
$hosts = [
32-
'192.168.1.1:9200', // IP + Port
33-
'192.168.1.2', // Just IP
32+
'192.0.2.0:9200', // IP + Port
33+
'192.0.2.0', // Just IP
3434
'mydomain.server.com:9201', // Domain + Port
3535
'mydomain2.server.com', // Just Domain
3636
'https://localhost', // SSL to localhost

0 commit comments

Comments
 (0)