@@ -225,9 +225,15 @@ provide whether properties are readable or writable as booleans::
225225The:class: `Symfony\\ Component\\ PropertyInfo\\ Extractor\\ ReflectionExtractor ` looks
226226for getter/isser/setter/hasser method in addition to whether or not a property is public
227227to determine if it's accessible. This based on how the:doc: `PropertyAccess </components/property_access >`
228- works. It assumes camel- case style method names following `PSR-1 `_. Therefore, a property like ``myProperty `` or ``my_property `` is
228+ works. It assumes camel case style method names following `PSR-1 `_. Therefore, a property like ``myProperty `` or ``my_property `` is
229229readable if it has a ``getMyProperty() `` and writable if it has a ``setMyProperty() `` method.
230230
231+ ..versionadded ::6.4
232+
233+ Camel case style setter methods for properties in snake case (like ``my_property ``) are accepted since Symfony 6.4. Before, the
234+ setter name had to contain the underscores (e.g. `setMy_property() `) to make the property assumed writable.
235+
236+
231237.. _property-info-initializable :
232238
233239Property Initializable Information