repo.or.cz
/
phpmyadmin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #19552 from kamil-tekiela/Fix-default-values
[phpmyadmin.git]
/
tests
/
config.e2e.inc.php
blob
83ad7beeb775fb94ce54918338ac2111e2266ed6
1
<
?php
2
3
declare
(
strict_types
=
1
);
4
5
$i
=
0
;
6
$cfg
[
'Servers'
] = [];
7
$i
++
;
8
$cfg
[
'Servers'
][
$i
][
'verbose'
] =
'Local'
;
9
$cfg
[
'Servers'
][
$i
][
'host'
] =
'127.0.0.1'
;
10
$cfg
[
'Servers'
][
$i
][
'auth_type'
] =
'cookie'
;
11
$cfg
[
'UploadDir'
] =
'../tests/test_data/'
;
12
$cfg
[
'Console'
][
'Mode'
] =
'show'
;