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;
32
32
* declaredField?: string,
33
33
* options?: array<string, mixed>
34
34
* }
35
+ * @psalm-type JoinColumnData = array{
36
+ * name: string,
37
+ * referencedColumnName: string,
38
+ * unique?: bool,
39
+ * quoted?: bool,
40
+ * fieldName?: string,
41
+ * onDelete?: string,
42
+ * }
35
43
* @psalm-type AssociationMapping = array{
36
44
* cache?: array,
37
45
* cascade: array<string>,
@@ -49,7 +57,7 @@ use ReflectionClass;
49
57
* isCascadeDetach: bool,
50
58
* isOnDeleteCascade?: bool,
51
59
* isOwningSide: bool,
52
- * joinColumns?: array,
60
+ * joinColumns?: array<JoinColumnData> ,
53
61
* joinColumnFieldNames?: array<string, string>,
54
62
* joinTable?: array,
55
63
* joinTableColumns?: list<mixed>,
You can’t perform that action at this time.
0 commit comments