File tree 1 file changed +25
-1
lines changed
1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,31 @@ use ReflectionClass;
7
7
8
8
/**
9
9
* @template-covariant T of object
10
- * @implements ClassMetadata<T>
10
+ * @template-implements ClassMetadata<T>
11
+ * @psalm-type FieldMapping = array{
12
+ * type: string,
13
+ * fieldName: string,
14
+ * columnName: string,
15
+ * length?: int,
16
+ * id?: bool,
17
+ * nullable?: bool,
18
+ * notInsertable?: bool,
19
+ * notUpdatable?: bool,
20
+ * generated?: string,
21
+ * enumType?: class-string<BackedEnum>,
22
+ * columnDefinition?: string,
23
+ * precision?: int,
24
+ * scale?: int,
25
+ * unique?: string,
26
+ * inherited?: class-string,
27
+ * originalClass?: class-string,
28
+ * originalField?: string,
29
+ * quoted?: bool,
30
+ * requireSQLConversion?: bool,
31
+ * declared?: class-string,
32
+ * declaredField?: string,
33
+ * options?: array<string, mixed>
34
+ * }
11
35
*/
12
36
class ClassMetadataInfo implements ClassMetadata
13
37
{
You can’t perform that action at this time.
0 commit comments