File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ class BulkSaver implements BulkSaverInterface
2828 private $ bulkDeleteLimit = 200 ;
2929
3030 /**
31- * Salesforce client
31+ * Salesforce SOAP client
3232 *
33- * @var Client
33+ * @var ClientInterface
3434 */
3535 private $ client ;
3636
@@ -45,17 +45,18 @@ class BulkSaver implements BulkSaverInterface
4545 *
4646 * @param Client $client Salesforce client
4747 */
48- public function __construct (Client $ client )
48+ public function __construct (ClientInterface $ client )
4949 {
5050 $ this ->client = $ client ;
5151 }
5252
5353 /**
5454 * Save a record in bulk
5555 *
56- * @param mixed $record
57- * @param string $objectType The record type, e.g., Account
58- * @param string $matchField Optional match field for upserts
56+ * @param mixed $record
57+ * @param string $objectType The record type, e.g., Account
58+ * @param string $matchField Optional match field for upserts
59+ *
5960 * @return BulkSaver
6061 */
6162 public function save ($ record , $ objectType , $ matchField = null )
You can’t perform that action at this time.
0 commit comments