revisions() публичный Метод

Only revisions up to thirty days old are available (or more if the Dropbox user has Pack-Rat). You can use the revision number in conjunction with the /restore call to revert the file to its previous state.
public revisions ( string $path, int[optional] $revLimit = 10, string[optional] $locale = null, bool[optional] $sandbox = false ) : array
$path string The path to the file.
$revLimit int[optional]
$locale string[optional]
$sandbox bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Dropbox->revisions()
  */
 public function testRevisions()
 {
     $response = $this->dropbox->revisions(BASE_PATH . 'hàh@, $.txt');
     $this->assertInternalType('array', $response);
     foreach ($response as $row) {
         $this->isFile($row);
     }
 }