芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/rentandbuyrealty.com/vendor/doctrine/dbal/src/Query.php
*/ private array $params; /** * The types of the parameters bound to the query. * * @var array
*/ private array $types; /** * @param array
$params * @param array
$types * * @psalm-suppress ImpurePropertyAssignment */ public function __construct(string $sql, array $params, array $types) { $this->sql = $sql; $this->params = $params; $this->types = $types; } public function getSQL(): string { return $this->sql; } /** @return array
*/ public function getParams(): array { return $this->params; } /** @return array
*/ public function getTypes(): array { return $this->types; } }