Rename Interface
This commit is contained in:
parent
8894b482dc
commit
86f80af432
7 changed files with 14 additions and 14 deletions
|
@ -26,7 +26,7 @@ use Friendica\Core\KeyValueStorage\Exceptions\KeyValueStoragePersistenceExceptio
|
|||
/**
|
||||
* Interface for Friendica specific Key-Value pair storage
|
||||
*/
|
||||
interface ICanManageKeyValuePairs extends \ArrayAccess
|
||||
interface IManageKeyValuePairs extends \ArrayAccess
|
||||
{
|
||||
/**
|
||||
* Get a particular value from the KeyValue Storage
|
|
@ -21,12 +21,12 @@
|
|||
|
||||
namespace Friendica\Core\KeyValueStorage\Type;
|
||||
|
||||
use Friendica\Core\KeyValueStorage\Capabilities\ICanManageKeyValuePairs;
|
||||
use Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs;
|
||||
|
||||
/**
|
||||
* An abstract helper class for Key-Value storage classes
|
||||
*/
|
||||
abstract class AbstractKeyValueStorage implements ICanManageKeyValuePairs
|
||||
abstract class AbstractKeyValueStorage implements IManageKeyValuePairs
|
||||
{
|
||||
/** {@inheritDoc} */
|
||||
public function get(string $key)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue