1234567891011121314151617181920212223242526272829 |
- <?php
- declare(strict_types=1);
- return [
-
-
-
- 'host' => '127.0.0.1',
- 'port' => 8848,
-
- 'username' => null,
- 'password' => null,
- 'guzzle' => [
- 'config' => null,
- ],
-
- 'grpc' => [
- 'enable' => false,
- 'heartbeat' => 10,
- ],
- ];
|