| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function submit($purgeAndReplace = false, $amazonOrderId = null, $documentType = null) |
||
| 41 | { |
||
| 42 | |||
| 43 | $contentmd5Hash = base64_encode(md5($this->getContent(), true)); |
||
| 44 | $params = [ |
||
| 45 | 'FeedType' => $this->type, |
||
| 46 | 'PurgeAndReplace' => $purgeAndReplace, |
||
| 47 | 'ContentMD5Value' => $contentmd5Hash |
||
| 48 | ]; |
||
| 49 | |||
| 50 | $response = $this->client->post('SubmitFeed', '/', self::VERSION, $params, $this->getContent()); |
||
| 51 | |||
| 52 | return $this->parseResponse($response); |
||
| 53 | } |
||
| 54 | |||
| 66 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.