ConfigEntityLockableInterface.php in Simple OAuth (OAuth2) & OpenID Connect 8.4
Same filename and directory in other branches
Namespace
Drupal\simple_oauth\EntityFile
src/Entity/ConfigEntityLockableInterface.phpView source
<?php
namespace Drupal\simple_oauth\Entity;
interface ConfigEntityLockableInterface {
/**
* Checks if the entity is locked against changes.
*
* @return bool
*/
public function isLocked();
/**
* Locks the entity.
*/
public function lock();
/**
* Unlocks the entity.
*/
public function unlock();
}
Interfaces
Name | Description |
---|---|
ConfigEntityLockableInterface |