Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | public function getSignableParameters() |
||
44 | { |
||
45 | // Grab all parameters |
||
46 | $params = array_merge($this->getParameters(), $this->post); |
||
47 | |||
48 | // Remove oauth_signature if present |
||
49 | // Ref: Spec: 9.1.1 ("The oauth_signature parameter MUST be excluded.") |
||
50 | if (isset($params['oauth_signature'])) { |
||
51 | unset($params['oauth_signature']); |
||
52 | } |
||
53 | |||
54 | return OAuth\Utils\Url::buildHttpQuery($params); |
||
55 | } |
||
56 | } |