->afterValidation(
function ($state, callable $set) {
$xml_data = simplexml_load_file($state['url_input']);
// some logic here to return the array
$set('field_from_tab1', $resultArray);
})
,
->afterValidation(
function ($state, callable $set) {
$xml_data = simplexml_load_file($state['url_input']);
// some logic here to return the array
$set('field_from_tab1', $resultArray);
})
,