From: Hypolite Petovan Date: Tue, 22 Aug 2023 12:50:16 +0000 (-0400) Subject: Fix variable name in constructor in Repository\Report X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ac99ab55c5965b2b4e74392aa1f8de5af5f26ea4;p=friendica.git Fix variable name in constructor in Repository\Report --- diff --git a/src/Moderation/Repository/Report.php b/src/Moderation/Repository/Report.php index e405f78081..29f0343517 100644 --- a/src/Moderation/Repository/Report.php +++ b/src/Moderation/Repository/Report.php @@ -48,7 +48,7 @@ final class Report extends \Friendica\BaseRepository $this->factory = $factory; $this->postFactory = $postFactory; - $this->ruleFactory = $postFactory; + $this->ruleFactory = $ruleFactory; } public function selectOneById(int $lastInsertId): \Friendica\Moderation\Entity\Report