diff options
| author | vjkcxl <349-vjkcxl@users.noreply.gitlab.tt-rss.org> | 2025-09-01 14:42:00 -0500 |
|---|---|---|
| committer | vjkcxl <349-vjkcxl@users.noreply.gitlab.tt-rss.org> | 2025-09-01 14:42:00 -0500 |
| commit | 17c6d7af8d718abe4cc3ea673e86c4f8f01f95e2 (patch) | |
| tree | 9138b2e7c1b86a9683bd0ae90467c565ad790b72 /plugins/af_comics | |
| parent | 6c0bcd90ede37cffa1c354a1c61e3fffcd94abaf (diff) | |
Hopefully fix PHPStan
Diffstat (limited to 'plugins/af_comics')
| -rwxr-xr-x | plugins/af_comics/filters/af_comics_comicpress.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/af_comics/filters/af_comics_comicpress.php b/plugins/af_comics/filters/af_comics_comicpress.php index 3b61612fb..db65915bc 100755 --- a/plugins/af_comics/filters/af_comics_comicpress.php +++ b/plugins/af_comics/filters/af_comics_comicpress.php @@ -64,6 +64,9 @@ class Af_Comics_ComicPress extends Af_ComicFilter { } } + /** + * @param DOMNodeList<DOMNode> $toUpdates + */ private function move_all_attributes(DOMNodeList $toUpdates, string $srcName, string $dstName): void { foreach ($toUpdates as $toUpdate) { $attributeValue = $toUpdate->getAttribute($srcName); |