We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Config
I will try use it combine swoole for connect multiple replications. Let's Config static properties to non-static will be better.
$config = (new ConfigBuilder()) ->withUser('root') ->withHost('192.168.1.10') ->withPort(3306) ->withPassword('123456') ->build(); $config2 = (new ConfigBuilder()) ->withUser('root') ->withHost('192.168.1.11') ->withPort(3306) ->withPassword('123456') ->build(); var_dump($config->getHost()); //192.168.1.11
Expected Result.
Output: 192.168.1.10
192.168.1.10
Actual Result.
Output: 192.168.1.11
192.168.1.11
The text was updated successfully, but these errors were encountered:
Hi, I can change this but I think you will unable to run consume in one php process.
Sorry, something went wrong.
done in #104
No branches or pull requests
I will try use it combine swoole for connect multiple replications. Let's
Config
static properties to non-static will be better.Output:
192.168.1.10
Output:
192.168.1.11
The text was updated successfully, but these errors were encountered: