| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | 4 | protected function populateRequest() |
|
| 54 | { |
||
| 55 | 4 | $this->xml = new \SimpleXMLElement('<Tilmeldinger/>'); |
|
| 56 | 4 | $user = $this->xml->addChild('User'); |
|
| 57 | 4 | $user->addChild('Username', $this->username); |
|
| 58 | 4 | $user->addChild('Passw', $this->password); |
|
| 59 | 4 | $user->addChild('Skolekode', $this->school_code); |
|
| 60 | 4 | } |
|
| 61 | |||
| 72 |