Hi,
Fow now we have @extends and @implements to work with inheritance and interfaces but there is nothing about Trait.
/**
* @implements Plugin\FormatsInterface<Api\Address>
*/
final class Formats extends AbstractPlugin implements Plugin\FormatsInterface
{
/**
* @extends Plugin\FormatsTrait<Api\Address>
*/
use Plugin\FormatsTrait;
}
Is it possible to implement @extends for traits as @uses already exists?
Thank you.