eZ\Publish\Core\REST\Server\Controller\ObjectState::deleteObjectStateGroup PHP Метод

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

The given object state group including the object states is deleted.
public deleteObjectStateGroup ( $objectStateGroupId ) : eZ\Publish\Core\REST\Server\Values\NoContent
$objectStateGroupId
Результат eZ\Publish\Core\REST\Server\Values\NoContent
    public function deleteObjectStateGroup($objectStateGroupId)
    {
        $this->objectStateService->deleteObjectStateGroup($this->objectStateService->loadObjectStateGroup($objectStateGroupId));
        return new Values\NoContent();
    }