{"record":{"id":"725c405091a66190","repo":"doctrine/orm","slug":"unknown-property-s-on-class-s","errorCode":null,"errorMessage":"Unknown property \"%s\" on class %s","messagePattern":"Unknown property \"(.+?)\" on class (.+?)","errorType":"exception","errorClass":"OutOfRangeException","httpStatus":null,"severity":"error","filePath":"src/Mapping/AssociationMapping.php","lineNumber":262,"sourceCode":"        };\n    }\n\n    /** @param string $offset */\n    public function offsetExists(mixed $offset): bool\n    {\n        return isset($this->$offset) || in_array($offset, ['isOwningSide', 'type'], true);\n    }\n\n    final public function offsetGet(mixed $offset): mixed\n    {\n        return match ($offset) {\n            'isOwningSide' => $this->isOwningSide(),\n            'type' => $this->type(),\n            'isCascadeRemove' => $this->isCascadeRemove(),\n            'isCascadePersist' => $this->isCascadePersist(),\n            'isCascadeRefresh' => $this->isCascadeRefresh(),\n            'isCascadeDetach' => $this->isCascadeDetach(),\n            default => property_exists($this, $offset) ? $this->$offset : throw new OutOfRangeException(sprintf(\n                'Unknown property \"%s\" on class %s',\n                $offset,\n                static::class,\n            )),\n        };\n    }\n\n    public function offsetSet(mixed $offset, mixed $value): void\n    {\n        assert($offset !== null);\n        if (! property_exists($this, $offset)) {\n            throw new OutOfRangeException(sprintf(\n                'Unknown property \"%s\" on class %s',\n                $offset,\n                static::class,\n            ));\n        }\n","sourceCodeStart":244,"sourceCodeEnd":280,"githubUrl":"https://github.com/doctrine/orm/blob/d9b9ff73016bf598ae07515f97289ce8074e97a5/src/Mapping/AssociationMapping.php#L244-L280","documentation":"Error \"Unknown property \"%s\" on class %s\" thrown in doctrine/orm.","triggerScenarios":"Thrown at src/Mapping/AssociationMapping.php:262 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"}