18 lines
325 B
PHP
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();
|
|
}
|