2016-03-23 15:30:47 +01:00
|
|
|
<?php declare(strict_types=1);
|
2016-03-09 15:36:02 +01:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|