File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -346,19 +346,19 @@ Returns the job.
346346##### List all legacy keys for a customer
347347``` php
348348$customerId = 42;
349- $job = $client->customers()->magentoLegacyKeys()->all($customerId);
349+ $legacyKeys = $client->customers()->magentoLegacyKeys()->all($customerId);
350350```
351351Returns a list of Magento legacy keys.
352352
353353##### Create a new legacy keys for a customer
354354``` php
355- $job = $client->customers()->magentoLegacyKeys()->create($customerId, $publicKey, $privateKey);
355+ $legacyKey = $client->customers()->magentoLegacyKeys()->create($customerId, $publicKey, $privateKey);
356356```
357357Returns the new Magento legacy key.
358358
359359##### Delete a legacy keys from a customer
360360``` php
361- $job = $ client->customers()->magentoLegacyKeys()->remove($customerId, $publicKey);
361+ $client->customers()->magentoLegacyKeys()->remove($customerId, $publicKey);
362362```
363363
364364## License
You can’t perform that action at this time.
0 commit comments