Skip to content

Commit

Permalink
Fix fieldMapping phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Mar 24, 2021
1 parent 3358ccd commit c9502d3
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php
Expand Up @@ -420,7 +420,23 @@ class ClassMetadataInfo implements ClassMetadata
* - <b>'unique'</b> (string, optional, schema-only)
* Whether a unique constraint should be generated for the column.
*
* @psalm-var array<string, array{type: string, fieldName: string, columnName: string, inherited: class-string}>
* @psalm-var array<string, array{
* type: string,
* fieldName: string,
* columnName?: string,
* length?: int,
* id?: bool,
* nullable?: bool,
* columnDefinition?: string,
* precision?: int,
* scale?: int,
* unique?: string,
* inherited?: class-string,
* originalClass?: class-string,
* originalField?: string,
* quoted?: bool,
* requireSQLConversion?: bool,
* }>
*/
public $fieldMappings = [];

Expand Down

0 comments on commit c9502d3

Please sign in to comment.