Many of the actions in Action, in particular ListAction.php have a number of private methods. This means that, if you want to override one of them and make a custom action, you have to copy-and-paste the private methods out of the parent class.
If those methods were simply protected, this problem would disappear.
Many of the actions in
Action, in particularListAction.phphave a number of private methods. This means that, if you want to override one of them and make a custom action, you have to copy-and-paste the private methods out of the parent class.If those methods were simply
protected, this problem would disappear.