Newscoop\Service\Implementation\OutputSettingSectionServiceDoctrine::update PHP Метод

update() публичный Метод

Update an ouput setting section
public update ( OutputSettingsSection $outputSettingsSection )
$outputSettingsSection Newscoop\Entity\Output\OutputSettingsSection
    public function update(OutputSettingsSection $outputSettingsSection)
    {
        $em = $this->getManager();
        $em->persist($outputSettingsSection);
        $em->flush();
    }