Lexidor Digital
Lexidor Digital
fixes #1196 Fixes: - Fix CI - Updates the docs site to use a support hhvm version (4.168) - Makes hsl examples exempt from the `` requirement. - This is...
fixes #112 Fixes: - Files without a legacy extension `.php`, `.hh`, are treated as `DOT_HACK`. - Same goes for `.hhi` - Bumps minimum hhvm version to 4.153.
Fixes: - No more `HH_IGNORE_ERROR` directives in codegen. - No more `HH_IGNORE_ERROR` directives in hand rolled nodes. - Various `HH_IGNORE_ERROR` -> `HH\FIXME\UNSAFE_CAST(...)` migrations. - It is not that I particularly...
```HACK final class Example { public function __construct( private int $private, private int $thisOnly, ) {} private function priv(): void {} private function thisMethod(): void {} ) ``` Within the...
This profiler has been removed from hhvm. If possible, convert to the `fb_setprofile()` equivalent instead of ripping out profiling functionality entirely. https://github.com/facebook/hhvm/commit/aac7c37fb6dea26186da0571ca14fff674f60427
For rationale, see https://github.com/facebook/hhvm/issues/3757. Returning a value from `__clone()` is always a mistake, since the return value is never used. __clone is called on the newly created object before resolving...
For the rationale behind such a linter, see https://github.com/facebook/hhvm/issues/3816. If possible, cover `inout`, `list(...)`, and `foreach` in addition to assignment expressions.
The idea is described in this issue: #458. This ought be a be linter, instead of a framework feature. This linter should take a configuration option with a deny_list of...
fixes #80 Fixes: - Write a unit test for providers with periods in the key
fixes #1 fixes #14 Fixes: - Remove dead fixmes. - Lint with hhast lint. - Introduces IRenderer for covariant handling of Renderer. - Introduces HTMLXHPRenderer to render straight to XHP....