Skip to content

Commit 5f9214f

Browse files
committed
Fixing codeDepot markers for eSign3 in PHP
1 parent b3ded02 commit 5f9214f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Services/Examples/eSignature/ListEnvelopesService.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class ListEnvelopesService
1616
* @param $clientService
1717
* @return EnvelopesInformation
1818
*/
19-
# ***DS.snippet.0.start
2019
public static function listEnvelopes(array $args, $clientService): EnvelopesInformation
2120
{
2221
# 1. call API method
@@ -28,7 +27,7 @@ public static function listEnvelopes(array $args, $clientService): EnvelopesInfo
2827
# Here we set the from_date to filter envelopes for the last 30 days
2928
# Use ISO 8601 date format
3029

31-
#ds-snippet-start:eSign3step2
30+
#ds-snippet-start:eSign3Step2
3231
$envelope_api = $clientService->getEnvelopeApi();
3332
$from_date = date("c", (time() - (30 * 24 * 60 * 60)));
3433
$options = new ListStatusChangesOptions();
@@ -39,7 +38,7 @@ public static function listEnvelopes(array $args, $clientService): EnvelopesInfo
3938
$clientService->showErrorTemplate($e);
4039
exit;
4140
}
42-
#ds-snippet-end:eSign3step2
41+
#ds-snippet-end:eSign3Step2
4342
return $statusChanges;
4443
}
4544
}

0 commit comments

Comments
 (0)