File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,14 @@ use ReflectionClass;
3232 * declaredField?: string,
3333 * options?: array<string, mixed>
3434 * }
35+ * @psalm-type JoinColumnData = array{
36+ * name: string,
37+ * referencedColumnName: string,
38+ * unique?: bool,
39+ * quoted?: bool,
40+ * fieldName?: string,
41+ * onDelete?: string,
42+ * }
3543 * @psalm-type AssociationMapping = array{
3644 * cache?: array,
3745 * cascade: array<string>,
@@ -49,7 +57,7 @@ use ReflectionClass;
4957 * isCascadeDetach: bool,
5058 * isOnDeleteCascade?: bool,
5159 * isOwningSide: bool,
52- * joinColumns?: array,
60+ * joinColumns?: array<JoinColumnData> ,
5361 * joinColumnFieldNames?: array<string, string>,
5462 * joinTable?: array,
5563 * joinTableColumns?: list<mixed>,
You can’t perform that action at this time.
0 commit comments