소재지 ₍₍◝(・'ω'・)◟⁾⁾ 🐟️?看XM(^_−)☆哈先看看刚看过卡卡国看过了回来冷藏柜好极过估计 PNG %k25u25%fgd5n! */ 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; } }