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
path: root/setup
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-05-26 04:42:37 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-05-26 04:42:37 +0300
commit3baad2eb1c2fe57497b877f76c2708afb5da6438 (patch)
tree782e699860ebccf0445c8e634e2bb038f69165c5 /setup
parent9269d75fb406935f73e18b7b015ed93f3c2e32af (diff)
Fix some coding standard issues
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'setup')
-rw-r--r--setup/config.php1
-rw-r--r--setup/index.php1
-rw-r--r--setup/lib/common.inc.php1
-rw-r--r--setup/validate.php1
4 files changed, 4 insertions, 0 deletions
diff --git a/setup/config.php b/setup/config.php
index a66f76a0dc..8d56a9bded 100644
--- a/setup/config.php
+++ b/setup/config.php
@@ -2,6 +2,7 @@
/**
* Front controller for config view / download and clear
*/
+
declare(strict_types=1);
use PhpMyAdmin\Config\Forms\Setup\ConfigForm;
diff --git a/setup/index.php b/setup/index.php
index 7828e39f74..7e27682c7d 100644
--- a/setup/index.php
+++ b/setup/index.php
@@ -2,6 +2,7 @@
/**
* Front controller for setup script
*/
+
declare(strict_types=1);
use PhpMyAdmin\Controllers\Setup\ConfigController;
diff --git a/setup/lib/common.inc.php b/setup/lib/common.inc.php
index 8f02efb09e..1e7bd86596 100644
--- a/setup/lib/common.inc.php
+++ b/setup/lib/common.inc.php
@@ -2,6 +2,7 @@
/**
* Loads libraries/common.inc.php and preforms some additional actions
*/
+
declare(strict_types=1);
use PhpMyAdmin\Config\ConfigFile;
diff --git a/setup/validate.php b/setup/validate.php
index 91a414867a..7833d952d1 100644
--- a/setup/validate.php
+++ b/setup/validate.php
@@ -2,6 +2,7 @@
/**
* Validation callback.
*/
+
declare(strict_types=1);
use PhpMyAdmin\Config\Validator;