Right now, this controller is just empty. But we've decided to add it already, so we can extend from this controller.
This way, if some Model extends ArticlePage, we can extend the controller from ArticlePageController.
This way we always extend from the module's controller, so if the controller gets logic later, that logic is directly available for the classes that extends this controller.
This MR adds some controller for the ArticlePage.
Right now, this controller is just empty. But we've decided to add it already, so we can extend from this controller.
This way, if some Model extends
ArticlePage
, we can extend the controller fromArticlePageController
. This way we always extend from the module's controller, so if the controller gets logic later, that logic is directly available for the classes that extends this controller.