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.
Actions