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

@@ -171,7 +171,7 @@ class Model extends \MailPoetVendor\Sudzy\ValidModel {
$model = static::findOne((int)$data['id']);
}
if ($model === false && !empty($keys)) {
if ($model === false && !empty($keys) && is_array($keys)) {
foreach ($keys as $field => $value) {
if ($model === false) {
$model = static::where($field, $value);