Skip to content

Commit

Permalink
Update ClassMetadataInfo.stub
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet authored and ondrejmirtes committed Aug 8, 2022
1 parent bb9dbf7 commit 75dd016
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions stubs/ORM/Mapping/ClassMetadataInfo.stub
Original file line number Diff line number Diff line change
Expand Up @@ -34,36 +34,36 @@ use ReflectionClass;
* }
* @psalm-type AssociationMapping = array{
* cache?: array,
* cascade?: array<string>,
* cascade: array<string>,
* declared?: class-string,
* fetch?: mixed,
* fetch: mixed,
* fieldName: string,
* id?: bool,
* inherited?: class-string,
* indexBy?: string,
* inversedBy?: string|null,
* isCascadeRemove?: bool,
* isCascadePersist?: bool,
* isCascadeRefresh?: bool,
* isCascadeMerge?: bool,
* isCascadeDetach?: bool,
* inversedBy: string|null,
* isCascadeRemove: bool,
* isCascadePersist: bool,
* isCascadeRefresh: bool,
* isCascadeMerge: bool,
* isCascadeDetach: bool,
* isOnDeleteCascade?: bool,
* isOwningSide?: bool,
* isOwningSide: bool,
* joinColumns?: array,
* joinColumnFieldNames?: array,
* joinColumnFieldNames?: array<string, string>,
* joinTable?: array,
* joinTableColumns?: list<mixed>,
* mappedBy?: string|null,
* mappedBy: string|null,
* orderBy?: array,
* originalClass?: class-string,
* originalField?: string,
* orphanRemoval?: bool,
* relationToSourceKeyColumns?: array,
* relationToTargetKeyColumns?: array,
* sourceEntity?: class-string,
* sourceToTargetKeyColumns?: array,
* sourceEntity: class-string,
* sourceToTargetKeyColumns?: array<string, string>,
* targetEntity: class-string,
* targetToSourceKeyColumns: array,
* targetToSourceKeyColumns?: array<string, string>,
* type: int,
* unique?: bool,
* }
Expand Down

0 comments on commit 75dd016

Please sign in to comment.