Skip to content
Snippets Groups Projects
Commit 80e88253 authored by Liam Morland's avatar Liam Morland
Browse files

Issue #3426100: Move initialization of $existing_mappings to clear phpstan error

parent a13a22bd
No related branches found
No related tags found
No related merge requests found
......@@ -91,11 +91,11 @@ abstract class FillPdfUploadTestBase extends FillPdfTestBase {
protected function assertUploadPdfFile($op = self::OP_UPLOAD, $filename_preexists = FALSE, FillPdfFormInterface $form = NULL) {
$previous_file_id = $this->getLastFileId();
$existing_mappings = [];
if ($op === self::OP_SAVE) {
// Record the mappings in the FillPdfFormFields before overwriting the
// file. We may need to compare them later.
$existing_fields = $form->getFormFields();
$existing_mappings = [];
foreach ($existing_fields as $existing_field) {
$existing_mappings[$existing_field->pdf_key->value] = $existing_field->value->value;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment