Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Persistence in PHP with Doctrine ORM

You're reading from  Persistence in PHP with Doctrine ORM

Product type Book
Published in Dec 2013
Publisher Packt
ISBN-13 9781782164104
Pages 114 pages
Edition 1st Edition
Languages
Author (1):
Kevin Dunglas Kevin Dunglas
Author Profile Icon Kevin Dunglas
Kevin Dunglas
Toc

Implementing inheritance


Like all object-oriented programming languages, PHP is designed on top of the inheritance concept; however, relational databases are not. This is the common problem when mapping classes to tables.

The Doctrine ORM provides the following three ways to achieve inheritance:

  • Mapped Superclasses

  • Single Table Inheritance

  • Class Table Inheritance

To learn about them, we will create three implementations of the same model, that is, for content authors.

Both posts and comments have authors. Authors must have a name and an e-mail address. Posts' authors (and only them) can also have an optional biography.

To represent this, we will create two classes: PostAuthor and CommentAuthor. They both extend an abstract Author class. Each Comment entity is linked to a CommentAuthor class and each Post entity to a PostAuthor class.

Using Mapped Superclasses

Mapped Superclasses are simple PHP classes that share mapped properties used by their descendant entities. Mapped Superclasses are not entities...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime