Skip to content

Commit bb7ea1d

Browse files
committed
fix indentation
1 parent 6f89a86 commit bb7ea1d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/Services/Examples/eSignature/SetTemplateTabValuesService.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ public static function sendEnvelopeFromCreatedTemplate($clientService, $args, $e
4747

4848
# Step 5 start
4949
# Create the Recipient View request object
50-
$authentication_method = 'None'; # How is this application authenticating
51-
# the signer? See the `authentication_method' definition
52-
# https://developers.docusign.com/esign-rest-api/reference/Envelopes/EnvelopeViews/createRecipient
53-
$recipient_view_request = $clientService->getRecipientViewRequest(
54-
$authentication_method,
55-
$args["envelope_args"]
56-
);
50+
$authentication_method = 'None'; # How is this application authenticating
51+
# the signer? See the `authentication_method' definition
52+
# https://developers.docusign.com/esign-rest-api/reference/Envelopes/EnvelopeViews/createRecipient
53+
$recipient_view_request = $clientService->getRecipientViewRequest(
54+
$authentication_method,
55+
$args["envelope_args"]
56+
);
5757

58-
# Obtain the recipient_view_url for the embedded signing
59-
# Exceptions will be caught by the calling function
60-
$recipientView = $clientService->getRecipientView($args['account_id'], $envelope_id, $recipient_view_request);
58+
# Obtain the recipient_view_url for the embedded signing
59+
# Exceptions will be caught by the calling function
60+
$recipientView = $clientService->getRecipientView($args['account_id'], $envelope_id, $recipient_view_request);
6161
# Step 5 end
6262
return ['envelope_id' => $envelope_id, 'redirect_url' => $recipientView['url']];
6363
}

0 commit comments

Comments
 (0)