Fix static vars

This commit is contained in:
Ruben 2016-09-04 13:54:47 +01:00
parent cfee991542
commit c720e0465c

View file

@ -94,16 +94,16 @@ class ScoreControllerProvider implements ControllerProviderInterface
// attributes
$hit->getAttributes()->setGlasses($data_hit['glasses']);
foreach(Models\Hit::$ATTRIBUTES as $attribute) {
foreach($hit->getAttributes()::$ATTRIBUTES as $attribute) {
$hit->getAttributes()->setAttribute($attribute, $data_hit[$attribute]);
}
// emotions
foreach(Models\Hit::$EMOTIONS as $emotion) {
foreach($hit->getEmotions()::$EMOTIONS as $emotion) {
$hit->getEmotions()->setEmotion($emotion, $data_hit['emotions'][$emotion]);
}
//expressions
foreach(Models\Hit::$EXPRESSIONS as $expression) {
foreach($hit->getExpressions()::$EXPRESSIONS as $expression) {
$hit->getExpressions()->setExpression($expression, $data_hit['expressions'][$expression]);
}