/**
  * @param TimeTriggerForWorkflowForm $timeTriggerForWorkflowForm
  * @return array
  */
 protected static function makeArrayFromTimeTriggerForWorkflowFormAttributesData(TimeTriggerForWorkflowForm $timeTriggerForWorkflowForm)
 {
     $data = array();
     foreach ($timeTriggerForWorkflowForm->getAttributes() as $attribute => $value) {
         if ($attribute != 'stringifiedModelForValue') {
             $data[$attribute] = $value;
         }
     }
     return $data;
 }