/** * * @param string $key * @param resource $conn * @return string|false * * @todo remove $conn check, redundant with Inspekt::escPgSQL */ public function escPgSQL($key, $conn = null) { if (!$this->keyExists($key)) { return false; } if (isset($conn)) { return Inspekt::escPgSQL($this->_getValue($key), $conn); } else { return Inspekt::escPgSQL($this->_getValue($key)); } }
/** * @param $key * @param null $conn * @return bool|mixed * @throws Exception */ public function escPgSQL($key, $conn = null) { if (isset($conn)) { return Inspekt::escPgSQL($this->getValue($key), $conn); } else { return Inspekt::escPgSQL($this->getValue($key)); } }