1<?php
2
3require_once(__DIR__ . '/InheritanceB.php');
4
5class InheritanceA extends InheritanceB
6{
7}
8