| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/DataObject/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/DataObject/KeyValueObjectInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\DataObject;
/**
* Interface \Magento\Framework\DataObject\KeyValueObjectInterface
*
*/
interface KeyValueObjectInterface
{
const KEY = 'key';
const VALUE = 'value';
/**
* Get object key
*
* @return string
*/
public function getKey();
/**
* Set object key
*
* @param string $key
* @return $this
*/
public function setKey($key);
/**
* Get object value
*
* @return string
*/
public function getValue();
/**
* Set object value
*
* @param string $value
* @return $this
*/
public function setValue($value);
}