pimcore / web-to-print-bundle

Web-to-Print community bundle adds web-to-print features to Pimcore documents.
https://pimcore.com/docs/platform/Web_To_Print/
Other
4 stars 12 forks source link

Fix: ManyToManyRelation have wrong phpdocs when use print documents #40

Closed blankse closed 1 year ago

blankse commented 1 year ago

The \ is missing at the begin of the class name.

Before:

/**
* Get sources - testclass.testfield
* @return Pimcore\Bundle\WebToPrintBundle\Model\Document\Printpage[]|Pimcore\Bundle\WebToPrintBundle\Model\Document\Printcontainer[]
*/
public function getTestfield(): array
{
    ...
}

After:

/**
* Get sources - testclass.testfield
* @return \Pimcore\Bundle\WebToPrintBundle\Model\Document\Printpage[]|\Pimcore\Bundle\WebToPrintBundle\Model\Document\Printcontainer[]
*/
public function getTestfield(): array
{
    ...
}