istic-openstack/server/vendor/php-opencloud/common/src/Common/Resource/Updateable.php
2016-03-09 15:36:02 +01:00

18 lines
325 B
PHP

<?php
namespace OpenCloud\Common\Resource;
/**
* Represents a resource that can be updated.
*
* @package OpenCloud\Common\Resource
*/
interface Updateable
{
/**
* Update the current resource with the configuration set out in the user options.
*
* @return void
*/
public function update();
}