Internal fixes and cleanup
This commit is contained in:
parent
1176bc35fe
commit
94da0e46ac
30 changed files with 128 additions and 113 deletions
|
|
@ -1,14 +1,13 @@
|
|||
<?php
|
||||
namespace App\Models;
|
||||
|
||||
class RSSTemplate {
|
||||
public string $title;
|
||||
class RSSTemplate extends BaseTemplate {
|
||||
public string $desc;
|
||||
public string $link;
|
||||
public array $items;
|
||||
|
||||
function __construct(string $title, string $desc, string $link, array $items) {
|
||||
$this->title = $title;
|
||||
parent::__construct($title);
|
||||
$this->desc = $desc;
|
||||
$this->link = $link;
|
||||
$this->items = $items;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue