Skip to content

Commit 7e4e698

Browse files
committed
Cs-fix
1 parent f2deb24 commit 7e4e698

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/App/src/Service/FeedGenerator.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,13 @@ public function write(): int
6464
$this->appendText($dom, $item, 'link', $link);
6565
$this->appendText($dom, $item, 'description', $post->getTldr() ?? $post->getExcerpt());
6666
$this->appendText($dom, $item, 'pubDate', $post->getPostDate()->format(DateTimeInterface::RSS));
67-
$this->appendText($dom, $item, 'updatedAt', $post->getUpdatedFormatted(DateTimeInterface::RSS) ?? $post->getPostDate()->format(DateTimeInterface::RSS));
67+
$this->appendText(
68+
$dom,
69+
$item,
70+
'updatedAt',
71+
$post->getUpdatedFormatted(DateTimeInterface::RSS) ??
72+
$post->getPostDate()->format(DateTimeInterface::RSS)
73+
);
6874
$this->appendText($dom, $item, 'guid', $link);
6975

7076
if ($this->image !== '') {

0 commit comments

Comments
 (0)