mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
18 lines
253 B
PHP
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;
|
|
}
|
|
}
|