Newscoop\Service\Implementation\OutputSettingSectionServiceDoctrine::delete PHP Method

delete() public method

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