Mohsen Ra

Results 24 comments of Mohsen Ra

Maybe this satisfies you : **[WyriHaximus/reactphp-simple-orm](https://github.com/WyriHaximus/reactphp-simple-orm)**

For Linux users, there is an option to run spotube using [proxychains](https://github.com/haad/proxychains) tool and it will tunnel the application through a custom proxy

```php $requests = []; $requests[] = $ctx->getUserDataItem('name'); $requests[] = $ctx->getUserDataItem('number'); \React\Promise\all($requests)->then(function ($result){ var_dump($result); // returns: array(2) { // [0]=> // NULL // [1]=> // NULL //} }); ``` Also, it's...

-not related to the topic- I've been reading throw [this answer](https://superuser.com/a/1595124) to use [KeePassXC](https://keepassxc.org/download/) as my ssh-agent helper and ssh_key store. but got stuck where sftp extension only accepts `pageant`...

Looking at [docs on await()](https://github.com/reactphp/async/tree/3.x#await), it clearly says: > While the promise is pending, this function will assume control over the event loop. Internally, it will run() the [default loop](https://github.com/reactphp/event-loop#loop)...

Simply use the returned $user for that: ```php $ctx->getMe()->then(function(User $user) use ($ctx){ echo "Hi \n" . $user; echo PHP_EOL; $ctx->sendMessage("Hi \n" . $user); }); ``` [jsonSerialize method](https://www.php.net/manual/en/jsonserializable.jsonserialize.php) is meant to...

Support for parameterized onCbQueryData listener without breaking changes. fixes #66

Hi, are you using webhook? Please show us your code

> How do i set or configure the cache? @festars default cache adaptor is memory cache and when your script exits it will be gone, you can use other adaptors...