Skip to content
Snippets Groups Projects
Commit c7cf77a1 authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[TASK] Replace @lazy with proper annotation namespace

parent c16d94a6
No related branches found
No related tags found
1 merge request!25Feature upgrade to typo3 10
......@@ -60,7 +60,7 @@ class Author extends AbstractEntity {
protected $description = '';
/**
* @lazy
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
* @var \TYPO3\CMS\Extbase\Domain\Model\FileReference
*/
protected $image;
......
......@@ -56,13 +56,13 @@ abstract class CategoryAndNews extends AbstractEntity {
protected $sorting = 0;
/**
* @lazy
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\TYPO3\CMS\Extbase\Domain\Model\FileReference>
*/
protected $teaser1Image;
/**
* @lazy
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\TYPO3\CMS\Extbase\Domain\Model\FileReference>
*/
protected $teaser2Image;
......
......@@ -66,7 +66,7 @@ class News extends CategoryAndNews {
protected $creationDate;
/**
* @lazy
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\SGalinski\SgNews\Domain\Model\News>
*/
protected $relatedNews;
......@@ -77,7 +77,7 @@ class News extends CategoryAndNews {
protected $tags;
/**
* @lazy
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\SGalinski\SgNews\Domain\Model\Author>
*/
protected $newsAuthor;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment