phalcon/cphalcon · error · Phalcon\Di\Exceptions\PropertyValueRequired
The property value is required on position {position}
Error message
The property value is required on position {position} What it means
Error "The property value is required on position {position}" thrown in phalcon/cphalcon.
Source
Thrown at phalcon/Di/Service/Builder.zep:179
/**
* The call parameter must be an array of arrays
*/
if unlikely typeof property != "array" {
throw new PropertyMustBeArray(propertyPosition);
}
/**
* A param 'name' is required
*/
if unlikely !fetch propertyName, property["name"] {
throw new PropertyNameRequired(propertyPosition);
}
/**
* A param 'value' is required
*/
if unlikely !fetch propertyValue, property["value"] {
throw new PropertyValueRequired(propertyPosition);
}
/**
* Update the public property
*/
let instance->{propertyName} = this->buildParameter(
container,
propertyPosition,
propertyValue
);
}
}
return instance;
}
/**
* Resolves a constructor/call parameterView on GitHub (pinned to b7419de9cd)
When it happens
Trigger: Thrown at phalcon/Di/Service/Builder.zep:179 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/a885ed6af1532fd9.
Report an issue: GitHub.