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
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
0 commit comments