Fix typo in intro table field name
This commit is contained in:
parent
d45575e0fa
commit
3693b0c5ca
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ use Psr\Log\LoggerInterface;
|
||||||
* @property string hash
|
* @property string hash
|
||||||
* @property string datetime
|
* @property string datetime
|
||||||
* @property bool blocked
|
* @property bool blocked
|
||||||
* @property bool ignored
|
* @property bool ignore
|
||||||
*/
|
*/
|
||||||
final class Introduction extends BaseModel
|
final class Introduction extends BaseModel
|
||||||
{
|
{
|
||||||
|
@ -116,7 +116,7 @@ final class Introduction extends BaseModel
|
||||||
*/
|
*/
|
||||||
public function ignore()
|
public function ignore()
|
||||||
{
|
{
|
||||||
$this->ignored = true;
|
$this->ignore = true;
|
||||||
|
|
||||||
return $this->intro->update($this);
|
return $this->intro->update($this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue