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
/
Column.php
blob
46d21840fef38259dc627c29cdb29463a086bfa9
1
<
?php
2
3
declare
(
strict_types
=
1
);
4
5
namespace
PhpMyAdmin
;
6
7
final
readonly
class
Column
8
{
9
public function
__construct
(
10
public
string
$field
,
11
public
string
$type
,
12
public
string
|
null
$collation
,
13
public
bool
$isNull
,
14
public
string
$key
,
15
public
string
|
null
$default
,
16
public
string
$extra
,
17
public
string
$privileges
,
18
public
string
$comment
,
19
) {
20
}
21
}