Saif Eddin Gmati

Results 67 issues of Saif Eddin Gmati

With the arrival of PHP 8.1, async code in PHP land doesn't have to use Promise or fall into the callback hell that we got trapped into before. If cycle...

magic
type: feature

continuing #7 changes; - setters have been removed. - extension has been renamed to plugin, as extension has been used previously to describe render filters, this ensures there's no confusion...

CLA Signed

https://github.com/hhvm/hack-router/blob/master/src/router/BaseRouter.php#L36

the DNS api should probably use the `HH\Lib\Network\DNS` namespace.

any plans to add TLS support to Network ? ```hack $server = await TCP\Server::createAsync(...); $server = new Network\SecureServer($server, $options); ```

~~see: https://github.com/facebook/hhvm/issues/8451~~

while using `HH\Lib\Experimental\IO` i came across multiple situations where i needed to copy a read handle content to a write handle content. example : - moving uploaded file content (...

example: ```hack final class A {} class B {} final class C extends B {} function m(): void { require_once __DIR__.'/vendor/autoload.hack'; \Facebook\AutoloadMap\initialize(); echo \Facebook\TypeSpec\of()->toString(); } ``` expected output: `C` actual...

**NOTE THIS PR CONTAINS HUGE BC BREAKS** - Add PasswordHasherInterface and default PasswordHasher implementation - Add ability to modify the hashing algorithm - Add ability to change hashing options -...