Jakub Łabno
Jakub Łabno
### Feature Request | Q | A |------------ | ------ | New Feature | yes | RFC | no | BC Break | no #### Summary Please add support for...
Library generates non-nullable return type for nullable return methods #482 Library version 3.0.0 For below method proxy is generating non-null return ``` /** * @AopAnnotation() * @return null|int */ public...
Library version 3.0.0 For below method proxy is generating non-null return ``` /** * @AopAnnotation() * @return null|int */ public function getSomeRandomValueAllowOnNull(): ?int { return random_int(0, 666); } ``` result:...
| Q | A |-------------- | ------ | BC Break | no | New Feature | yes ### Description Feature that allows attribute generation for classes (methods/properties is the next...
Return type of TheIconic\Tracking\GoogleAnalytics\Parameters\CompoundParameterCollection::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice
Are you planning to release version compatible with PHP8.0?
Grouping features by `@FeatureGroup` is not working in kotlin ``` @Configuration class FeaturesConfiguration { @Bean fun featureProvider() = EnumClassFeatureProvider(Features::class.java) ... ``` ``` @FeatureGroup @Label("Fancy group") annotation class MyFeaturesGroup ``` ```...
Filters do not work on readonly properties ```Cannot modify readonly property```