{"record":{"id":"9f72a57b39a73f24","repo":"doctrine/orm","slug":"parameter-s-does-not-exist","errorCode":null,"errorMessage":"Parameter '%s' does not exist.","messagePattern":"Parameter '(.+?)' does not exist\\.","errorType":"exception","errorClass":"InvalidArgumentException","httpStatus":null,"severity":"error","filePath":"src/Query/Filter/SQLFilter.php","lineNumber":102,"sourceCode":"        $this->em->getFilters()->setFiltersStateDirty();\n\n        return $this;\n    }\n\n    /**\n     * Gets a parameter to use in a query.\n     *\n     * The function is responsible for the right output escaping to use the\n     * value in a query.\n     *\n     * @return string The SQL escaped parameter to use in a query.\n     *\n     * @throws InvalidArgumentException\n     */\n    final public function getParameter(string $name): string\n    {\n        if (! isset($this->parameters[$name])) {\n            throw new InvalidArgumentException(\"Parameter '\" . $name . \"' does not exist.\");\n        }\n\n        if ($this->parameters[$name]->isList) {\n            throw FilterException::cannotConvertListParameterIntoSingleValue($name);\n        }\n\n        return $this->em->getConnection()->quote((string) $this->parameters[$name]->value);\n    }\n\n    /**\n     * Gets a parameter to use in a query assuming it's a list of entries.\n     *\n     * The function is responsible for the right output escaping to use the\n     * value in a query, separating each entry by comma to inline it into\n     * an IN() query part.\n     *\n     * @throws InvalidArgumentException\n     */","sourceCodeStart":84,"sourceCodeEnd":120,"githubUrl":"https://github.com/doctrine/orm/blob/d9b9ff73016bf598ae07515f97289ce8074e97a5/src/Query/Filter/SQLFilter.php#L84-L120","documentation":"Error \"Parameter '%s' does not exist.\" thrown in doctrine/orm.","triggerScenarios":"Thrown at src/Query/Filter/SQLFilter.php:102 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"d9b9ff73016bf598ae07515f97289ce8074e97a5","analyzedAt":"2026-08-21T06:13:15.863Z","schemaVersion":2},"datasetVersion":"2026-08-21T11:28:35.574Z"}