Timm Friebe
Timm Friebe
> Has this feature already been approved? Not to my knowledge, neither do I know how I would get it approved. I thought opening an issue here might be enough...
Hrm, I have no idea how to do that. Also, this isn't really a Cygwin package, i.e. not compiled from GNU/Linux source - it's a pure Windows program; I'd make...
If someone else wants to tackle this, or create a Choco / WinGet package (e.g. as part of #34), feel free to submit a pull request for this!
Generics use annotations, which means we have the following options: 1. Drop generics support (see also https://github.com/xp-framework/rfc/issues/338#issuecomment-774665621) 2. Rewrite generics support to use PHP 8 attributes via reflection, and drop...
> Dependency of lang.FunctionType on class details API For this to work, we need to be able to parse API doc types in `FunctionType::verify()`. This has the following 2 prerequisites:...
## On the ambiguity of `parent::$propertyName::get()` In current PHP, this means the following: > On the parent class' static property `$x`, invoke a static method named `get` ### Example ```php...
> After much on-again/off-again work, Ilija and I are back with a more polished property access hooks/interface properties RFC. It’s 99% unchanged from last summer; the PR is now essentially...
More changes, see https://externals.io/message/122445#122583, especially: ## Shorthands The $foo => expression shorthand has been removed. The legal shorthands are now: ```php public string $foo { get => /* evaluates to...
> Clarified that the parent::$foo::get() syntax works on a parent property regardless of whether it has hooks This cannot work in this implementation due to us relying on `__set` and...
**Status**: Waiting for PHP RFC to successfully be voted on