Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\Core\Entities; |
| 3 | |
| 4 | use Apie\Core\Other\DiscriminatorMapping; |
| 5 | |
| 6 | /** |
| 7 | * All Apie entities that use inheritance should implement this interface. |
| 8 | */ |
| 9 | interface PolymorphicEntityInterface extends EntityInterface |
| 10 | { |
| 11 | public static function getDiscriminatorMapping(): DiscriminatorMapping; |
| 12 | } |