diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Mapping/ToManyInverseSideMapping.php')
-rw-r--r-- | vendor/doctrine/orm/src/Mapping/ToManyInverseSideMapping.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Mapping/ToManyInverseSideMapping.php b/vendor/doctrine/orm/src/Mapping/ToManyInverseSideMapping.php new file mode 100644 index 0000000..a092ebe --- /dev/null +++ b/vendor/doctrine/orm/src/Mapping/ToManyInverseSideMapping.php | |||
@@ -0,0 +1,10 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Mapping; | ||
6 | |||
7 | abstract class ToManyInverseSideMapping extends InverseSideMapping implements ToManyAssociationMapping | ||
8 | { | ||
9 | use ToManyAssociationMappingImplementation; | ||
10 | } | ||