1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Fix dupes

This commit is contained in:
Matt Brown 2020-10-16 18:13:35 -04:00
parent 5dab45ce14
commit aee431108b

View File

@ -31,6 +31,6 @@ class TPositiveInt extends TInt
?string $this_class,
bool $use_phpdoc_format
): string {
return 'positive-int';
return $use_phpdoc_format ? 'int' : 'positive-int';
}
}