Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5765 | Rev 6056 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5765 Rev 5775
Línea 162... Línea 162...
162
            $contentReaction->id = $this->getLastInsertId();
162
            $contentReaction->id = $this->getLastInsertId();
163
        }
163
        }
Línea 164... Línea 164...
164
        
164
        
165
        return $response;
165
        return $response;
-
 
166
    }
-
 
167
    
-
 
168
    
-
 
169
    /**
-
 
170
     *
-
 
171
     * @param ContentReaction $contentReaction
-
 
172
     * @return boolean
-
 
173
     */
-
 
174
    public function update($contentReaction)
-
 
175
    {
-
 
176
        $hydrator = new ObjectPropertyHydrator();
-
 
177
        $values = $hydrator->extract($contentReaction);
-
 
178
 
-
 
179
        
-
 
180
        $update = $this->sql->update(self::_TABLE);
-
 
181
        $update->set($values);
-
 
182
        $update->where->equalTo('id', $contentReaction->id);
-
 
183
        
-
 
184
        return  $this->executeUpdate($update);
-
 
185
 
166
    }
186
    }
167
}
187
}