Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/signon-script.php')
-rw-r--r--examples/signon-script.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/signon-script.php b/examples/signon-script.php
index fd0aadd459..f32a582413 100644
--- a/examples/signon-script.php
+++ b/examples/signon-script.php
@@ -24,7 +24,7 @@ declare(strict_types=1);
function get_login_credentials($user)
{
/* Optionally we can use passed username */
- if (!empty($user)) {
+ if (! empty($user)) {
return [$user, 'password'];
}