eZ\Publish\Core\REST\Server\Controller\Section::deleteSection PHP Метод

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

Delete a section by ID.
public deleteSection ( $sectionId ) : eZ\Publish\Core\REST\Server\Values\NoContent
$sectionId
Результат eZ\Publish\Core\REST\Server\Values\NoContent
    public function deleteSection($sectionId)
    {
        $this->sectionService->deleteSection($this->sectionService->loadSection($sectionId));
        return new NoContent();
    }