PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
dropbox
/
src
/
Http
<?php namespace Kunnu\Dropbox\Http; use Kunnu\Dropbox\DropboxFile; /** * RequestBodyStream */ class RequestBodyStream implements RequestBodyInterface { /** * File to be sent with the Request * * @var \Kunnu\Dropbox\DropboxFile */ protected $file; /** * Create a new RequestBodyStream instance * * @param \Kunnu\Dropbox\DropboxFile $file */ public function __construct(DropboxFile $file) { $this->file = $file; } /** * Get the Body of the Request * * @return resource */ public function getBody() { return $this->file->getContents(); } }
[-] RequestBodyJsonEncoded.php
[edit]
[+]
..
[-] DropboxRawResponse.php
[edit]
[+]
Clients
[-] RequestBodyInterface.php
[edit]
[-] RequestBodyStream.php
[edit]