Closed ro31337 closed 6 years ago
Action's get and post methods are not marked as @private. And they are private. The only way we call action is by call method.
Action
get
post
@private
call
So update is required to mark get and post as private methods in all actions.
Also, look at esdoc for @override keyword and apply if it's required here.
@override
Not important or not current priority at the moment. Closing till the better time.
Action
'sget
andpost
methods are not marked as@private
. And they are private. The only way we call action is bycall
method.So update is required to mark
get
andpost
as private methods in all actions.Also, look at esdoc for
@override
keyword and apply if it's required here.