Bug Incorrect docblocks from xf-dev:entity-class-properties

There is a bug in this version
D

DragonByte Tech

Guest
Given the following column definition:
PHP:

'embed_metadata' => ['type' => self::JSON_ARRAY, 'nullable' => true, 'default' => null],
The resulting docblock entry is @property array|null|null $embed_metadata - there's an extra null there.

Given an entity that extends AbstractPrefix or AbstractPrefixGroup, the following docblocks are generated:
(AbstractPrefix)
Code:

Code:
 * @property-read string|Phrase $title
 * @property-read bool $has_usage_help
 *
 *...

Read more

Continue reading...