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
Translated using Weblate (Portuguese)
[phpmyadmin.git]
/
src
/
UrlParams.php
blob
5ade904d0d7098d1e5bc9f074d3fe732d0a722c2
1
<
?php
2
/**
3
* Static class for URL params
4
*/
5
6
declare
(
strict_types
=
1
);
7
8
namespace
PhpMyAdmin
;
9
10
class
UrlParams
11
{
12
/** @var array<string, bool|int|string> $params */
13
public static array
$params
= [];
14
public static
string
$goto
=
''
;
15
public static
string
$back
=
''
;
16
}