Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 13 |
Ratio | 100 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function getRequestOptions() |
||
30 | { |
||
31 | return [ |
||
32 | \GuzzleHttp\RequestOptions::FORM_PARAMS => [ |
||
33 | $this->options['form_fields'][0] => $this->options['username'], |
||
34 | $this->options['form_fields'][1] => $this->options['password'], |
||
35 | ], |
||
36 | ]; |
||
37 | } |
||
39 |