Fix missing array flag on migration errors response model rule

This commit is contained in:
Jake Barnby 2023-10-04 15:05:42 +13:00
parent c0f44537cd
commit d1502029d1
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -68,6 +68,7 @@ class Migration extends Model
->addRule('errors', [
'type' => self::TYPE_STRING,
'description' => 'All errors that occurred during the migration process.',
'array' => true,
'default' => [],
'example' => [],
])