diff --git a/src/Attribute/Property/Relation/ManyToMany.php b/src/Attribute/Property/Relation/ManyToMany.php new file mode 100644 index 0000000..0d3ea2e --- /dev/null +++ b/src/Attribute/Property/Relation/ManyToMany.php @@ -0,0 +1,42 @@ +key, + $this->generateKey, + $this->foreignKey, + $this->foreignField, + $this->foreignKeys, + $this->bridge, + $this->bridgeKey, + $this->bridgeField, + $this->bridgeForeignKey, + $this->field, + $this->entity, + $this->join, + $this->function, + ); + } +} \ No newline at end of file diff --git a/src/Attribute/Property/Relation/OneToMany.php b/src/Attribute/Property/Relation/OneToMany.php new file mode 100644 index 0000000..f78b273 --- /dev/null +++ b/src/Attribute/Property/Relation/OneToMany.php @@ -0,0 +1,42 @@ +key, + $this->generateKey, + $this->foreignKey, + $this->foreignField, + $this->foreignKeys, + $this->bridge, + $this->bridgeKey, + $this->bridgeField, + $this->bridgeForeignKey, + $this->field, + $this->entity, + $this->join, + $this->function, + ); + } +} \ No newline at end of file diff --git a/src/Attribute/Property/Relation/OneToOne.php b/src/Attribute/Property/Relation/OneToOne.php new file mode 100644 index 0000000..3d221df --- /dev/null +++ b/src/Attribute/Property/Relation/OneToOne.php @@ -0,0 +1,42 @@ +key, + $this->generateKey, + $this->foreignKey, + $this->foreignField, + $this->foreignKeys, + $this->bridge, + $this->bridgeKey, + $this->bridgeField, + $this->bridgeForeignKey, + $this->field, + $this->entity, + $this->join, + $this->function, + ); + } +} \ No newline at end of file