Code Duplication    Length = 3-3 lines in 2 locations

Classes/Service/Targets/InsertUpdateTable.php 2 locations

@@ 154-156 (lines=3) @@
151
            $field_values[$value] = $entry[$key];
152
        }
153
        
154
        if ($this->getConfiguration()["salt_password"] == 1) {
155
            $field_values["password"] = $this->saltPassword($field_values["password"]);
156
        }
157
158
        $field_values['pid'] = $this->getConfiguration()['pid'];
159
        $time = time();
@@ 186-188 (lines=3) @@
183
            $tmp_arr[$value] = $entry[$key];
184
        }
185
        
186
        if ($this->getConfiguration()["salt_password"] == 1) {
187
            $tmp_arr['password'] = $this->saltPassword($tmp_arr['password']);
188
        }
189
        
190
        $field_values = $this->duplicateArray($tmp_arr, $this->getConfiguration()['exclude_from_update']);
191
        $field_values['tstamp'] = time();