-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathCurrent.php
More file actions
25 lines (22 loc) · 802 Bytes
/
Current.php
File metadata and controls
25 lines (22 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
declare(strict_types=1);
namespace PhpMyAdmin;
final class Current
{
/** @psalm-var int<0, max> */
public static int $server = 0;
public static string $database = '';
public static string $table = '';
public static string $sqlQuery = '';
public static Message|null $message = null;
public static string $lang = 'en';
/** @var array<string>|string|null */
public static array|string|null $whereClause = null;
public static string|null $displayQuery = null;
public static string|null $dispQuery = null;
public static string|null $charset = null;
public static string|null $completeQuery = null;
public static Message|string|null $displayMessage = null;
public static int $numTables = 0;
public static string $messageToShow = '';
}