Remove phpstan error from Models

[MAILPOET-3235]
This commit is contained in:
Jan Lysý
2021-01-12 12:14:12 +01:00
committed by Veljko V
parent b0e53b38a1
commit 7950804216
5 changed files with 6 additions and 6 deletions

View File

@ -109,7 +109,7 @@ class SendingQueue extends Model {
}
public function getMeta() {
return (Helpers::isJson($this->meta)) ? json_decode($this->meta, true) : $this->meta;
return (Helpers::isJson($this->meta) && is_string($this->meta)) ? json_decode($this->meta, true) : $this->meta;
}
public function isSubscriberProcessed($subscriberId) {