Completed
Push — master ( 2609bf...a7084c )
by William
12:50 queued 04:58
created

classes/Config/Forms/User/UserFormList.php (1 issue)

1
<?php
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
3
/**
4
 * User preferences form
5
 *
6
 * @package PhpMyAdmin
7
 */
8
declare(strict_types=1);
9
10
namespace PhpMyAdmin\Config\Forms\User;
11
12
use PhpMyAdmin\Config\Forms\BaseFormList;
13
14
/**
15
 * Class UserFormList
16
 * @package PhpMyAdmin\Config\Forms\User
17
 */
18
class UserFormList extends BaseFormList
19
{
20
    /**
21
     * @var array
22
     */
23
    protected static $all = [
24
        'Features',
25
        'Sql',
26
        'Navi',
27
        'Main',
28
        'Export',
29
        'Import'
0 ignored issues
show
There should be a trailing comma after the last value of an array declaration.
Loading history...
30
    ];
31
    /**
32
     * @var string
33
     */
34
    protected static $ns = '\\PhpMyAdmin\\Config\\Forms\\User\\';
35
}
36