Skip to content

Instantly share code, notes, and snippets.

@DavertMik
Created May 30, 2012 14:23
Show Gist options
  • Save DavertMik/2836634 to your computer and use it in GitHub Desktop.
Save DavertMik/2836634 to your computer and use it in GitHub Desktop.
Codeception Soap Request Definition RFC
$soap->survey
->set('id', $survey_id)
->questions->item
->set('id', $question_id);
->answers->item
->set('id', $answer_id)
->attributes->item
->set('id', 1)
->set('value', 123);
->parent('answers') // back to answers element
->item
->set('id', 2)
->parent();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment