<?php/**
* @file
* Definition of Drupal\views\ViewStorageInterface.
*/namespaceDrupal\views;
useDrupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Defines an interface for View storage classes.
*/interfaceViewStorageInterfaceextends \IteratorAggregate, ConfigEntityInterface {
/**
* Sets the configuration entity status to enabled.
*/
public functionenable();
/**
* Sets the configuration entity status to disabled.
*/
public functiondisable();
/**
* Returns whether the configuration entity is enabled.
*
* @return bool
*/
public functionisEnabled();
}