From 3693b0c5ca6b085a41d9e8df6a0c48995151f95e Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 12 Jan 2020 10:55:47 -0500 Subject: [PATCH] Fix typo in intro table field name --- src/Model/Introduction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Introduction.php b/src/Model/Introduction.php index e6cd4f8525..68d598e344 100644 --- a/src/Model/Introduction.php +++ b/src/Model/Introduction.php @@ -22,7 +22,7 @@ use Psr\Log\LoggerInterface; * @property string hash * @property string datetime * @property bool blocked - * @property bool ignored + * @property bool ignore */ final class Introduction extends BaseModel { @@ -116,7 +116,7 @@ final class Introduction extends BaseModel */ public function ignore() { - $this->ignored = true; + $this->ignore = true; return $this->intro->update($this); }