/**
  * @return array
  */
 protected function makeAttributeRows()
 {
     $inputPrefixData = $this->inputPrefixData;
     $inputPrefixData[] = ActionForWorkflowForm::ACTION_ATTRIBUTES;
     if ($this->model->isTypeAnUpdateVariant()) {
         return $this->resolveAttributeRowsForUpdateTypes($inputPrefixData);
     } else {
         return $this->resolveAttributeRowsForCreateTypes($inputPrefixData);
     }
 }