Subclass¶
A subclass is a class that extends another class. It is also called a child of that class.
Subclasses have the same features than any other class, besides the extension.
<?php
class A {}
// this is a subclass
class B extends A {}
?>
Related : Sub (prefix), Child Class, Base Class, Sub (prefix)