Skip to content

Commit

Permalink
Fix type regression filterActions (FreshRSS#5786)
Browse files Browse the repository at this point in the history
Regression from FreshRSS#5720
  • Loading branch information
Alkarex authored Oct 30, 2023
1 parent 9b3a867 commit 5ca9101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Models/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class FreshRSS_Feed extends Minz_Model {
private string $lockPath = '';
private string $hubUrl = '';
private string $selfUrl = '';
/** @var array<FreshRSS_FilterAction> $filterActions */
private array $filterActions = [];
/** @var array<FreshRSS_FilterAction>|null $filterActions */
private ?array $filterActions = null;

public function __construct(string $url, bool $validate = true) {
if ($validate) {
Expand Down

0 comments on commit 5ca9101

Please sign in to comment.