phalcon/cphalcon · error · Phalcon\Mvc\Model\Exceptions\ReferencedFieldsMismatch
Number of referenced fields are not the same in the HasOne r
Error message
Number of referenced fields are not the same in the HasOne relation of model '{entityName}' with Reference Model '{referencedEntity}' What it means
Error "Number of referenced fields are not the same in the HasOne relation of model '{entityName}' with Reference Model '{referencedEntity}'" thrown in phalcon/cphalcon.
Source
Thrown at phalcon/Mvc/Model/Manager.zep:633
var entityName, referencedEntity, relation, relations, alias,
lowerAlias, singleRelations;
string keyRelation;
let entityName = get_class_lower(model),
referencedEntity = strtolower(referencedModel);
let keyRelation = entityName . "$" . referencedEntity;
if !fetch relations, this->hasOne[keyRelation] {
let relations = [];
}
/**
* Check if the number of fields are the same
*/
if typeof referencedFields == "array" {
if unlikely count(fields) != count(referencedFields) {
throw new ReferencedFieldsMismatch("HasOne", entityName, referencedEntity);
}
}
/**
* Create a relationship instance
*/
let relation = new Relation(
Relation::HAS_ONE,
referencedModel,
fields,
referencedFields,
options
);
/**
* Check an alias for the relation
*/
if fetch alias, options["alias"] {View on GitHub (pinned to b7419de9cd)
When it happens
Trigger: Thrown at phalcon/Mvc/Model/Manager.zep:633 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of phalcon/cphalcon@b7419de9cd (2026-08-21).
Data as JSON: /api/errors/d2eb68d8bfc7c95e.
Report an issue: GitHub.