Skip to content

Commit 94ae648

Browse files
committed
fixes for linter
1 parent 5802de2 commit 94ae648

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/Controllers/Examples/eSignature/EG046MultipleDelivery.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Example 046: Send an envelope with a remote signer and cc recipient o be notified via multiple
3+
* Example 046: Send an envelope with a remote signer and cc recipient o be notified via multiple
44
* delivery channels (Email and SMS or WhatsApp).
55
*/
66

@@ -21,7 +21,7 @@ class EG046MultipleDelivery extends eSignBaseController
2121
*
2222
* @return void
2323
*/
24-
public function __construct()
24+
public function __construct()
2525
{
2626
parent::__construct();
2727
parent::controller();
@@ -61,7 +61,9 @@ public function createController(): void
6161
);
6262
}
6363
} catch (ApiException $e) {
64-
$this->clientService->showErrorTemplate(new ApiException($this->codeExampleText["CustomErrorTexts"][0]["ErrorMessage"]));
64+
$this->clientService->showErrorTemplate(
65+
new ApiException($this->codeExampleText["CustomErrorTexts"][0]["ErrorMessage"])
66+
);
6567
}
6668
}
6769

@@ -91,4 +93,4 @@ public function getTemplateArgs(): array
9193
'envelope_args' => $envelope_args
9294
];
9395
}
94-
}
96+
}

src/Services/Examples/eSignature/MultipleDeliveryService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public static function multipleDelivery(
3131
$clientService,
3232
$demoDocsPath,
3333
$docDocx,
34-
$docPDF): array
35-
{
34+
$docPDF
35+
): array {
3636
$envelopeDefinition = self::makeEnvelope(
3737
$args["envelope_args"],
3838
$clientService,

0 commit comments

Comments
 (0)