[TOOLS] Use \DateTimeInterface rather than DateTimeInterface
This commit is contained in:
parent
bb1ba11fcf
commit
fb220e82ed
|
@ -11,8 +11,8 @@ const types = [
|
||||||
'blob' => '',
|
'blob' => '',
|
||||||
'bool' => 'bool',
|
'bool' => 'bool',
|
||||||
'char' => 'string',
|
'char' => 'string',
|
||||||
'datetime' => 'DateTimeInterface',
|
'datetime' => '\DateTimeInterface',
|
||||||
'timestamp' => 'DateTimeInterface',
|
'timestamp' => '\DateTimeInterface',
|
||||||
'html' => 'string',
|
'html' => 'string',
|
||||||
'int' => 'int',
|
'int' => 'int',
|
||||||
'numeric' => 'float',
|
'numeric' => 'float',
|
||||||
|
@ -53,7 +53,7 @@ foreach ($files as $file) {
|
||||||
$method_name = str_replace([' ', 'Gsactor'], ['', 'GSActor'], ucwords(str_replace('_', ' ', $field)));
|
$method_name = str_replace([' ', 'Gsactor'], ['', 'GSActor'], ucwords(str_replace('_', ' ', $field)));
|
||||||
$default = @$schema['fields'][$field]['default'];
|
$default = @$schema['fields'][$field]['default'];
|
||||||
|
|
||||||
if (isset($default) && $nullable != '?' && $type != 'DateTimeInterface') {
|
if (isset($default) && $nullable != '?' && $type != '\DateTimeInterface') {
|
||||||
if (is_string($default)) {
|
if (is_string($default)) {
|
||||||
$default = "'{$default}'";
|
$default = "'{$default}'";
|
||||||
} elseif ($type == 'bool') {
|
} elseif ($type == 'bool') {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user