Skip to content

Commit af2ff93

Browse files
committed
DEVDOCS-10600 cd tags
1 parent 24cae75 commit af2ff93

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Services/Examples/eSignature/ListEnvelopesService.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ public static function listEnvelopes(array $args, $clientService): EnvelopesInfo
2727
# a set of envelope_ids. Here we filter using a from_date.
2828
# Here we set the from_date to filter envelopes for the last 10 days
2929
# Use ISO 8601 date format
30+
31+
#ds-snippet-start:eSign3step2
3032
$envelope_api = $clientService->getEnvelopeApi();
3133
$from_date = date("c", (time() - (10 * 24 * 60 * 60)));
3234
$options = new ListStatusChangesOptions();
@@ -37,8 +39,8 @@ public static function listEnvelopes(array $args, $clientService): EnvelopesInfo
3739
$clientService->showErrorTemplate($e);
3840
exit;
3941
}
40-
42+
#ds-snippet-end:eSign3step2
4143
return $statusChanges;
4244
}
43-
# ***DS.snippet.0.end
45+
4446
}

0 commit comments

Comments
 (0)