getEntityManager(); $result = $em ->getRepository('ChamiloCoreBundle:SettingsCurrent') ->findOneBy(['variable' => 'scorm_cumulative_session_time']); $cumulativeScormTime = 1; if ($result->getSelectedValue() === 'false') { $cumulativeScormTime = 0; } $this->addSql("UPDATE c_lp SET accumulate_scorm_time = $cumulativeScormTime"); } /** * @param Schema $schema * @throws \Doctrine\DBAL\DBALException * @throws \Doctrine\DBAL\Schema\SchemaException */ public function down(Schema $schema) { } }