eZ\Publish\Core\REST\Server\Controller\ObjectState::deleteObjectState PHP Méthode

deleteObjectState() public méthode

The given object state is deleted.
public deleteObjectState ( $objectStateId ) : eZ\Publish\Core\REST\Server\Values\NoContent
$objectStateId
Résultat eZ\Publish\Core\REST\Server\Values\NoContent
    public function deleteObjectState($objectStateId)
    {
        $this->objectStateService->deleteObjectState($this->objectStateService->loadObjectState($objectStateId));
        return new Values\NoContent();
    }