FreshRSS-Extensions/xExtension-ShareByEmail/Models/View.php
Alexandre Alapetite b49596818c
Add PHPStan and other quality checks
Similar to FreshRSS core
Contributes to https://github.com/FreshRSS/Extensions/issues/184
2023-11-23 22:41:09 +01:00

13 lines
226 B
PHP

<?php
declare(strict_types=1);
namespace ShareByEmail\mailers;
class View extends \Minz_View {
public ?\FreshRSS_Entry $entry = null;
public string $content = '';
public string $subject = '';
public string $to = '';
}