Files
einundzwanzig-portal/app/Support/CustomFeedItem.php
HolgerHatGarKeineNode 83129009ec rss feed added
2023-02-15 21:24:45 +01:00

18 lines
253 B
PHP

<?php
namespace App\Support;
use Spatie\Feed\FeedItem;
class CustomFeedItem extends FeedItem
{
protected string $content;
public function content(string $content): self
{
$this->content = $content;
return $this;
}
}