diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Mapping/InverseJoinColumn.php')
| -rw-r--r-- | vendor/doctrine/orm/src/Mapping/InverseJoinColumn.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Mapping/InverseJoinColumn.php b/vendor/doctrine/orm/src/Mapping/InverseJoinColumn.php new file mode 100644 index 0000000..2a77f3f --- /dev/null +++ b/vendor/doctrine/orm/src/Mapping/InverseJoinColumn.php | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\ORM\Mapping; | ||
| 6 | |||
| 7 | use Attribute; | ||
| 8 | |||
| 9 | #[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)] | ||
| 10 | final class InverseJoinColumn implements MappingAttribute | ||
| 11 | { | ||
| 12 | use JoinColumnProperties; | ||
| 13 | } | ||
