Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing namespace import in
MysqlClient
Adds a missing `use` statement for the `PromiseInterface` type to `MysqlClient`. Without that change, using the API leads to type warnings: ```php function someMethod(): PromiseInterface { return $this->mysql->query(...); } // Return value is expected to be '\React\Promise\PromiseInterface', '\React\Mysql\PromiseInterface' returned
- Loading branch information