@@ -112,12 +112,12 @@ protected function mapToFeed(Parameters $parameters, Result $result): Feed
112112
113113 return new Feed (
114114 parameters: $ parameters ,
115- title : $ feedIoFeed ->getTitle (),
116- description : $ feedIoFeed ->getDescription (),
117- link : $ feedIoFeed ->getLink (),
115+ name : $ feedIoFeed ->getTitle (),
116+ summary : $ feedIoFeed ->getDescription (),
117+ url : $ feedIoFeed ->getLink (),
118118 image: $ feedIoFeed ->getLogo (),
119119 authorName: $ feedIoFeed ->getAuthor ()?->getName(),
120- authorLink : $ feedIoFeed ->getAuthor ()?->getUri(),
120+ authorUrl : $ feedIoFeed ->getAuthor ()?->getUri(),
121121 language: $ feedIoFeed ->getLanguage (),
122122 updatedAt: $ feedIoFeed ->getLastModified (),
123123 nextUpdateAt: $ result ->getNextUpdate (5 * 60 ),
@@ -134,13 +134,13 @@ protected function mapToEntry(ItemInterface $feedIoItem): Entry
134134 {
135135 return new Entry (
136136 externalId: $ feedIoItem ->getPublicId (),
137- title : $ feedIoItem ->getTitle (),
138- description : $ feedIoItem ->getSummary (),
139- text : $ feedIoItem ->getContent (),
140- link : $ feedIoItem ->getLink (),
137+ name : $ feedIoItem ->getTitle (),
138+ summary : $ feedIoItem ->getSummary (),
139+ content : $ feedIoItem ->getContent (),
140+ url : $ feedIoItem ->getLink (),
141141 image: $ this ->getEntryImage ($ feedIoItem ),
142142 authorName: $ feedIoItem ->getAuthor ()?->getName(),
143- authorLink : $ feedIoItem ->getAuthor ()?->getUri(),
143+ authorUrl : $ feedIoItem ->getAuthor ()?->getUri(),
144144 createdAt: $ feedIoItem ->getLastModified (),
145145 updatedAt: $ feedIoItem ->getLastModified (),
146146 );
0 commit comments