I am using page models for a project and I have a question.
Is it possible to create a page model that does not correspond to any template only to use it as base for other page models?
For example to have a model defined as:
class BasePage extends Page
without a base.php template. And then have:
class CustomPage extends BasePage
with a custom.php template? And so to have all methods of BasePage available at CustomPage.