1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query;
use BackedEnum;
use DateInterval;
use DateTimeImmutable;
use DateTimeInterface;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Types\Types;
use function current;
use function is_array;
use function is_bool;
use function is_int;
/**
* Provides an enclosed support for parameter inferring.
*
* @link www.doctrine-project.org
*/
class ParameterTypeInferer
{
/**
* Infers type of a given value, returning a compatible constant:
* - Type (\Doctrine\DBAL\Types\Type::*)
* - Connection (\Doctrine\DBAL\Connection::PARAM_*)
*
* @param mixed $value Parameter value.
*
* @return int|string Parameter type constant.
*/
public static function inferType($value)
{
if (is_int($value)) {
return Types::INTEGER;
}
if (is_bool($value)) {
return Types::BOOLEAN;
}
if ($value instanceof DateTimeImmutable) {
return Types::DATETIME_IMMUTABLE;
}
if ($value instanceof DateTimeInterface) {
return Types::DATETIME_MUTABLE;
}
if ($value instanceof DateInterval) {
return Types::DATEINTERVAL;
}
if ($value instanceof BackedEnum) {
return is_int($value->value)
? Types::INTEGER
: Types::STRING;
}
if (is_array($value)) {
$firstValue = current($value);
if ($firstValue instanceof BackedEnum) {
$firstValue = $firstValue->value;
}
return is_int($firstValue)
? Connection::PARAM_INT_ARRAY
: Connection::PARAM_STR_ARRAY;
}
return ParameterType::STRING;
}
}
|