diff options
Diffstat (limited to 'server/vendor/php-opencloud/common/src/Common/Resource/Updateable.php')
| -rw-r--r-- | server/vendor/php-opencloud/common/src/Common/Resource/Updateable.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/server/vendor/php-opencloud/common/src/Common/Resource/Updateable.php b/server/vendor/php-opencloud/common/src/Common/Resource/Updateable.php new file mode 100644 index 0000000..a9a3f0e --- /dev/null +++ b/server/vendor/php-opencloud/common/src/Common/Resource/Updateable.php @@ -0,0 +1,18 @@ +<?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(); +} |
