Skip to content

Commit

Permalink
Improve phpdoc again
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Aug 7, 2022
1 parent 5f92be1 commit d2447fd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@
* declaredField?: string,
* options?: array<string, mixed>
* }
* @psalm-type JoinColumn = array{
* name: string,
* referencedColumnName: string,
* unique?: bool,
* quoted?: bool,
* fieldName?: string,
* onDelete?: string,
* }
* @psalm-type AssociationMapping = array{
* cache?: array,
* cascade: array<string>,
Expand All @@ -114,7 +122,7 @@
* isCascadeDetach: bool,
* isOnDeleteCascade?: bool,
* isOwningSide: bool,
* joinColumns?: array,
* joinColumns?: array<JoinColumn>,
* joinColumnFieldNames?: array<string, string>,
* joinTable?: array,
* joinTableColumns?: list<mixed>,
Expand Down

0 comments on commit d2447fd

Please sign in to comment.