Yes, itβs possible, itβs called mapping inheritance , but the child class must be explicitly declared as @Entity , and its mapping must also be explicitly defined (if the child class adds additional properties).
The most common form of inheritance mapping is unidirectional table inheritance, here is an example of such a mapping from the Doctrine manual:
namespace MyProject\Model; class Person {
source share