blob: 333b2c26d2c7763644e17dc62433824c9667b58f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
namespace OpenCloud\Common\Resource;
/**
* A resource that supports a GET or HEAD operation to retrieve more details.
*
* @package OpenCloud\Common\Resource
*/
interface Retrievable
{
/**
* Retrieve details of the current resource from the remote API.
*
* @return void
*/
public function retrieve();
}
|