Completed
Pull Request — master (#33)
by
unknown
03:17
created
src/Phpforce/SoapClient/EventListener/LogTransactionListener.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     {
43 43
         $error = $event->getError();
44 44
         $this->logger->err('[Salesforce] error: ' . $error->statusCode . ' - '
45
-                           . $error->message, get_object_vars($error));
45
+                            . $error->message, get_object_vars($error));
46 46
     }
47 47
 
48 48
     public function setLogging($logging)
Please login to merge, or discard this patch.
src/Phpforce/SoapClient/BulkSaver.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -194,12 +194,12 @@  discard block
 block discarded – undo
194 194
         $this->bulkDeleteRecords[] = $record;
195 195
     }
196 196
 
197
-     /**
198
-     * Add a record to the update queue
199
-     *
200
-     * @param sObject $sObject
201
-     * @param string $objectType
202
-     */
197
+        /**
198
+         * Add a record to the update queue
199
+         *
200
+         * @param sObject $sObject
201
+         * @param string $objectType
202
+         */
203 203
     private function addBulkUpdateRecord($sObject, $objectType)
204 204
     {
205 205
         if (isset($this->bulkUpdateRecords[$objectType])
@@ -228,12 +228,12 @@  discard block
 block discarded – undo
228 228
         $this->bulkUpsertRecords[$objectType][] = $sObject;
229 229
     }
230 230
 
231
-     /**
232
-     * Flush creates
233
-     *
234
-     * @param string $objectType
235
-     * @return SaveResult[]
236
-     */
231
+        /**
232
+         * Flush creates
233
+         *
234
+         * @param string $objectType
235
+         * @return SaveResult[]
236
+         */
237 237
     private function flushCreates($objectType)
238 238
     {
239 239
         $result = $this->client->create($this->bulkCreateRecords[$objectType], $objectType);
Please login to merge, or discard this patch.