Skip to content

Commit

Permalink
refactor: Mark errorEntry as safe since it can be either a string…
Browse files Browse the repository at this point in the history
… or an array
  • Loading branch information
khalwat committed Dec 8, 2023
1 parent 1773cbe commit 13a1b8d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/models/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,17 @@ public function rules(): array
'manifestPath',
'devServerPublic',
'serverPublic',
'errorEntry',
'cacheKeySuffix',
'devServerInternal',
],
'string'
],
[
[
'errorEntry',
],
'string'
],
];
}
}

0 comments on commit 13a1b8d

Please sign in to comment.