Actions
Feature proposal #8703
closedImplement typed parameters
Description
Currently parameters are just a generic Registry object. This requires using generic getters and setters that are not default value aware. Implement classes that extend Registry and add typed getters and setters.
Current:$row->getParams()->getString( 'place', '' )
New:$row->getParams()->getPlace()
This allows strict typing and to place the default value directly in getPlace so it never has to be assumed. getParams would return our table object specific Registry.
Updated by krileon about 2 years ago
- Target version changed from 7.0.0 to 6.0.0
- % Done changed from 0 to 60
Implemented for global params, stream, and notification params thus far. Needs also implemented for actual objects like an activity object for known params.
Updated by krileon over 1 year ago
- Status changed from Assigned to Resolved
- % Done changed from 90 to 100
Actions