@@ -7,7 +7,7 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * Perform call using transport layer |
| 9 | 9 | * |
| 10 | - * @param LoggerInterface $looger |
|
| 10 | + * @param LoggerInterface $logger |
|
| 11 | 11 | * @param string $data |
| 12 | 12 | * @param string $content_type |
| 13 | 13 | * @param string|bool $encrypt |
@@ -23,10 +23,11 @@ |
||
| 23 | 23 | /** |
| 24 | 24 | * Build the processor |
| 25 | 25 | * |
| 26 | - * @param string $encodint |
|
| 27 | - * @param LoggerInterface $looger |
|
| 26 | + * @param string $encoding |
|
| 27 | + * @param LoggerInterface $logger |
|
| 28 | 28 | * |
| 29 | 29 | * @throws Exception |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function __construct($encoding, LoggerInterface $logger); |
| 32 | 33 | |
@@ -93,11 +93,11 @@ discard block |
||
| 93 | 93 | |
| 94 | 94 | $this->logger->debug("Performing a single XML call"); |
| 95 | 95 | |
| 96 | - $this->logger->debug("Data dump before encoding", $request->toArray()); |
|
| 96 | + $this->logger->debug("Data dump before encoding", $request->toArray()); |
|
| 97 | 97 | |
| 98 | 98 | try { |
| 99 | 99 | |
| 100 | - // encoding |
|
| 100 | + // encoding |
|
| 101 | 101 | foreach ( $request->getSpecialTypes() as $key => $value ) { |
| 102 | 102 | |
| 103 | 103 | $this->encoder->setValueType($key, $value); |
@@ -129,9 +129,9 @@ discard block |
||
| 129 | 129 | |
| 130 | 130 | $composed_requests = []; |
| 131 | 131 | |
| 132 | - $this->logger->debug("Performing an XML multicall"); |
|
| 132 | + $this->logger->debug("Performing an XML multicall"); |
|
| 133 | 133 | |
| 134 | - $this->logger->debug("Data dump before encoding", $requests); |
|
| 134 | + $this->logger->debug("Data dump before encoding", $requests); |
|
| 135 | 135 | |
| 136 | 136 | foreach ($requests as $request) { |
| 137 | 137 | |