[TOOLS] Use \DateTimeInterface rather than DateTimeInterface

This commit is contained in:
Hugo Sales 2021-04-27 21:23:00 +00:00
parent bb1ba11fcf
commit fb220e82ed
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ const types = [
'blob' => '',
'bool' => 'bool',
'char' => 'string',
'datetime' => 'DateTimeInterface',
'timestamp' => 'DateTimeInterface',
'datetime' => '\DateTimeInterface',
'timestamp' => '\DateTimeInterface',
'html' => 'string',
'int' => 'int',
'numeric' => 'float',
@ -53,7 +53,7 @@ foreach ($files as $file) {
$method_name = str_replace([' ', 'Gsactor'], ['', 'GSActor'], ucwords(str_replace('_', ' ', $field)));
$default = @$schema['fields'][$field]['default'];
if (isset($default) && $nullable != '?' && $type != 'DateTimeInterface') {
if (isset($default) && $nullable != '?' && $type != '\DateTimeInterface') {
if (is_string($default)) {
$default = "'{$default}'";
} elseif ($type == 'bool') {