DbQuery: Accept any type in method `valueToTimestamp()`
This commit is contained in:
parent
2a24f69fd8
commit
95ea071a89
|
@ -224,17 +224,17 @@ class DbQuery extends SimpleQuery
|
||||||
|
|
||||||
protected function valueToTimestamp($value)
|
protected function valueToTimestamp($value)
|
||||||
{
|
{
|
||||||
if (ctype_digit($value)) {
|
if (is_string($value)) {
|
||||||
|
if (ctype_digit($value)) {
|
||||||
|
$value = (int) $value;
|
||||||
|
} else {
|
||||||
|
$value = strtotime($value);
|
||||||
|
}
|
||||||
|
} elseif (! is_int($value)) {
|
||||||
$value = (int) $value;
|
$value = (int) $value;
|
||||||
} elseif (is_string($value)) {
|
|
||||||
$value = strtotime($value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_int($value)) {
|
return $this->timestampForSql($value);
|
||||||
$value = $this->timestampForSql($value);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $value;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue