istic-openstack/server/vendor/php-opencloud/common/src/Common/Resource/Updateable.php
manzerbredes 53f65de9d4 Test
2016-03-28 12:17:43 +02:00

18 lines
350 B
PHP
Executable file

<?php declare(strict_types=1);
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();
}