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:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2021-09-15 20:22:39 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2021-09-15 23:05:40 +0300
commitf00d70cccb65b01504afc8c1a1a2ce8042f4c3fe (patch)
treed425a6c17c523a7580617b696cc8c861927bc14d /examples/config.manyhosts.inc.php
parent70c43a98633dc475834a0a8d008d96e846dd2ec3 (diff)
Remove useless whitespaces
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'examples/config.manyhosts.inc.php')
-rw-r--r--examples/config.manyhosts.inc.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/examples/config.manyhosts.inc.php b/examples/config.manyhosts.inc.php
index 11322225cb..8e93435d0d 100644
--- a/examples/config.manyhosts.inc.php
+++ b/examples/config.manyhosts.inc.php
@@ -9,7 +9,7 @@
declare(strict_types=1);
$i = 0;
-$hosts = [
+$hosts = [
'foo.example.com',
'bar.example.com',
'baz.example.com',
@@ -18,18 +18,18 @@ $hosts = [
foreach ($hosts as $host) {
$i++;
- $cfg['Servers'][$i]['host'] = $host;
- $cfg['Servers'][$i]['port'] = '';
- $cfg['Servers'][$i]['socket'] = '';
+ $cfg['Servers'][$i]['host'] = $host;
+ $cfg['Servers'][$i]['port'] = '';
+ $cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['compress'] = false;
- $cfg['Servers'][$i]['controluser'] = 'pma';
- $cfg['Servers'][$i]['controlpass'] = 'pmapass';
- $cfg['Servers'][$i]['auth_type'] = 'cookie';
- $cfg['Servers'][$i]['user'] = '';
+ $cfg['Servers'][$i]['controluser'] = 'pma';
+ $cfg['Servers'][$i]['controlpass'] = 'pmapass';
+ $cfg['Servers'][$i]['auth_type'] = 'cookie';
+ $cfg['Servers'][$i]['user'] = '';
$cfg['Servers'][$i]['password'] = '';
- $cfg['Servers'][$i]['only_db'] = '';
- $cfg['Servers'][$i]['verbose'] = '';
- $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
+ $cfg['Servers'][$i]['only_db'] = '';
+ $cfg['Servers'][$i]['verbose'] = '';
+ $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
$cfg['Servers'][$i]['relation'] = 'pma__relation';
$cfg['Servers'][$i]['table_info'] = 'pma__table_info';