Skip to content

Commit 40f5b50

Browse files
committed
phpcs fixes
Signed-off-by: bidi <bidi@apidemia.com>
1 parent 42499e6 commit 40f5b50

21 files changed

Lines changed: 20 additions & 20 deletions

code_examples/totp/_misc/totp-append-ConfigProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
PostValidateRecoveryHandler::class => AttributedServiceFactory::class,
99

1010
TotpForm::class => ElementFactory::class,
11-
RecoveryForm::class => ElementFactory::class,
11+
RecoveryForm::class => ElementFactory::class,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
$app->pipe(TotpMiddleware::class);
2-
$app->pipe(CancelUrlMiddleware::class);
2+
$app->pipe(CancelUrlMiddleware::class);

code_examples/totp/_misc/totp-append-routes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
->get('/validate-totp-form', GetTotpHandler::class, 'admin::validate-totp-form')
66
->post('/validate-totp', PostValidateTotpHandler::class, 'admin::validate-totp')
77
->get('/recovery-form', GetRecoveryFormHandler::class, 'admin::recovery-form')
8-
->post('/validate-recovery', PostValidateRecoveryHandler::class, 'admin::validate-recovery')
8+
->post('/validate-recovery', PostValidateRecoveryHandler::class, 'admin::validate-recovery')

code_examples/totp/_misc/totp-append-enable-disable-button.html.twig renamed to code_examples/totp/_misc/totp-append-view-account.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
</a>
1818
</div>
1919
{% endif %}
20-
</div>
20+
</div>

code_examples/totp/config/autoload/config totp.global.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
'issuer' => 'ALX-Admin',
2626
],
2727
],
28-
];
28+
];

code_examples/totp/src/Admin/src/Form/RecoveryForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ public function init(): void
7474
->setAttribute('class', 'btn btn-primary mt-2')
7575
);
7676
}
77-
}
77+
}

code_examples/totp/src/Admin/src/Form/TotpForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ public function init(): void
7474
->setAttribute('class', 'btn btn-primary mt-2')
7575
);
7676
}
77-
}
77+
}

code_examples/totp/src/Admin/src/Handler/Account/GetDisableTotpFormHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ public function handle(ServerRequestInterface $request): ResponseInterface|Empty
4444
])
4545
);
4646
}
47-
}
47+
}

code_examples/totp/src/Admin/src/Handler/Account/GetEnableTotpFormHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ public function handle(ServerRequestInterface $request): ResponseInterface|Empty
9090
])
9191
);
9292
}
93-
}
93+
}

code_examples/totp/src/Admin/src/Handler/Account/GetRecoveryFormHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ public function handle(ServerRequestInterface $request): ResponseInterface|Empty
4040
])
4141
);
4242
}
43-
}
43+
}

0 commit comments

Comments
 (0)