Skip to content

Commit f4f03ee

Browse files
committed
fix: cs
Signed-off-by: Vitor Mattos <[email protected]>
1 parent 0cf44f0 commit f4f03ee

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

lib/Activity/Settings/SignRequestCanceled.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@
99
namespace OCA\Libresign\Activity\Settings;
1010

1111
use OCA\Libresign\Events\SignRequestCanceledEvent;
12-
use OCA\Libresign\Exception\LibresignException;
1312
use OCA\Libresign\Helper\ValidateHelper;
1413
use OCP\IL10N;
15-
use OCP\IUser;
1614
use OCP\IUserSession;
1715

1816
class SignRequestCanceled extends LibresignActivitySettings {

lib/Events/SignRequestCanceledEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
class SignRequestCanceledEvent extends Event {
1717
public const SIGN_REQUEST_CANCELED = 'libresign_sign_request_canceled';
18-
18+
1919
public function __construct(
2020
private SignRequest $signRequest,
2121
private FileEntity $libreSignFile,

lib/Listener/MailNotifyListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ protected function sendCanceledMailNotification(
136136
if ($identifyMethod->getEntity()->isDeletedAccount()) {
137137
return;
138138
}
139-
139+
140140
$email = '';
141141
if ($identifyMethod->getName() === 'account') {
142142
$userId = $identifyMethod->getEntity()->getIdentifierValue();

lib/Notification/Notifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ private function parseCanceled(
234234

235235
$parameters = $notification->getSubjectParameters();
236236
$notification->setIcon($this->url->getAbsoluteURL($this->url->imagePath(Application::APP_ID, 'app-dark.svg')));
237-
237+
238238
if (isset($parameters['from']) && isset($parameters['file'])) {
239239
$subject = $l->t('{from} canceled the signature request for {file}');
240240
$notification->setParsedSubject(

lib/Service/RequestSignatureService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ private function getSignRequestByIdentifyMethod(IIdentifyMethod $identifyMethod,
479479
return $signRequest;
480480
}
481481

482-
public function unassociateToUser(int $fileId, int $signRequestId): void {
482+
public function unassociateToUser(int $fileId, int $signRequestId): void {
483483
$signRequest = $this->signRequestMapper->getByFileIdAndSignRequestId($fileId, $signRequestId);
484484
$deletedOrder = $signRequest->getSigningOrder();
485485

0 commit comments

Comments
 (0)